Changeset 8843


Ignore:
Timestamp:
Apr 19, 2013, 10:14:16 PM (12 years ago)
Author:
steve
Message:

Still fiddling with stored version info

Location:
trunk/anuga_core/source/anuga
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/anuga_core/source/anuga/compile_all.py

    r8842 r8843  
    6767try:
    6868    from anuga.utilities.system_tools  import store_version_info
    69     store_version_info(verbose=True)
     69    store_version_info()
    7070    print
    7171    print "---------------------------------"
  • trunk/anuga_core/source/anuga/utilities/stored_version_info.py

    r8836 r8843  
    1010Repository Root: https://anuga.anu.edu.au/svn/anuga
    1111Repository UUID: e22b01d3-8fe4-0310-a5c0-ca58b0ebee9c
    12 Revision: 8834
     12Revision: 8842
    1313Node Kind: directory
    1414Schedule: normal
    1515Last Changed Author: steve
    16 Last Changed Rev: 8820
    17 Last Changed Date: 2013-04-08 21:28:42 +1000 (Mon, 08 Apr 2013)
     16Last Changed Rev: 8842
     17Last Changed Date: 2013-04-19 21:39:33 +1000 (Fri, 19 Apr 2013)
    1818
    1919"""
  • trunk/anuga_core/source/anuga/utilities/system_tools.py

    r8842 r8843  
    246246   
    247247    import config
    248 
     248    import subprocess
     249
     250    #txt = subprocess.Popen('svn info', shell=True, stdout=subprocess.PIPE).communicate()[0]
    249251    try:
    250252        #fid = os.popen('svn info')
    251253        #FIXME SR: This works for python 2.6
    252         txt = subprocess.Popen('svn -info', shell=True, stdout=subprocess.PIPE).communicate()[0]
    253 
     254        txt = subprocess.Popen('svn info', shell=True, stdout=subprocess.PIPE).communicate()[0]
    254255    except:
    255256        msg = 'Command "svn" is not recognised on the system PATH'
Note: See TracChangeset for help on using the changeset viewer.