Ignore:
Timestamp:
Jan 10, 2007, 2:23:45 PM (18 years ago)
Author:
ole
Message:

Better error message and untabifying

File:
1 edited

Legend:

Unmodified
Added
Removed
  • anuga_core/source/anuga/abstract_2d_finite_volumes/util.py

    r4159 r4160  
    544544    # Create dummy info
    545545    info = 'Revision: Version info could not be obtained.'
    546     info += 'A command line version of svn and access to the '
     546    info += 'A command line version of svn must be availbable '
     547    info += 'on the system PATH, access to the subversion '
    547548    info += 'repository is necessary and the output must '
    548549    info += 'contain a line starting with "Revision:"'
     
    551552        fid = os.popen('svn info')
    552553    except:
    553         msg = 'svn is not recognised'
     554        msg = 'svn is not recognised on the system PATH'
    554555        warn(msg, UserWarning)
    555556    else:   
Note: See TracChangeset for help on using the changeset viewer.