Ignore:
Timestamp:
Jan 8, 2020 7:30:23 PM (3 years ago)
Author:
toby
Message:

more install fixes: add error message

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIdataGUI.py

    r4236 r4238  
    365365    except:
    366366        pass
    367     print ("This is GSAS-II revision %s"%str(GSASIIpath.GetVersionNumber())+'\n')
     367    rev = GSASIIpath.svnGetRev()
     368    if rev is None:
     369        "no SVN"
     370    else:
     371        rev = "SVN version {}".format(rev)
     372    print ("This is GSAS-II revision {} ({})\n".format(
     373        GSASIIpath.GetVersionNumber(),rev))
    368374
    369375def warnNumpyVersion(application):
Note: See TracChangeset for help on using the changeset viewer.