Changeset 8843
- Timestamp:
- Apr 19, 2013, 10:14:16 PM (12 years ago)
- Location:
- trunk/anuga_core/source/anuga
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/source/anuga/compile_all.py
r8842 r8843 67 67 try: 68 68 from anuga.utilities.system_tools import store_version_info 69 store_version_info( verbose=True)69 store_version_info() 70 70 print 71 71 print "---------------------------------" -
trunk/anuga_core/source/anuga/utilities/stored_version_info.py
r8836 r8843 10 10 Repository Root: https://anuga.anu.edu.au/svn/anuga 11 11 Repository UUID: e22b01d3-8fe4-0310-a5c0-ca58b0ebee9c 12 Revision: 88 3412 Revision: 8842 13 13 Node Kind: directory 14 14 Schedule: normal 15 15 Last Changed Author: steve 16 Last Changed Rev: 88 2017 Last Changed Date: 2013-04- 08 21:28:42 +1000 (Mon, 08Apr 2013)16 Last Changed Rev: 8842 17 Last Changed Date: 2013-04-19 21:39:33 +1000 (Fri, 19 Apr 2013) 18 18 19 19 """ -
trunk/anuga_core/source/anuga/utilities/system_tools.py
r8842 r8843 246 246 247 247 import config 248 248 import subprocess 249 250 #txt = subprocess.Popen('svn info', shell=True, stdout=subprocess.PIPE).communicate()[0] 249 251 try: 250 252 #fid = os.popen('svn info') 251 253 #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] 254 255 except: 255 256 msg = 'Command "svn" is not recognised on the system PATH'
Note: See TracChangeset
for help on using the changeset viewer.