Commit bfb77406 authored by 's avatar

Fixed typo in version_txt

parent 23b6ae3a
...@@ -91,7 +91,7 @@ def version_txt(): ...@@ -91,7 +91,7 @@ def version_txt():
try: try:
s = open(os.path.join(SOFTWARE_HOME,'version.txt')).read() s = open(os.path.join(SOFTWARE_HOME,'version.txt')).read()
s = re.sub("\(.*?)\?","",s) s = re.sub("\(.*?\)\?","",s)
s= '(%s, python %d.%d.%d, %s)' % (s,v[0],v[1],v[2],sys.platform) s= '(%s, python %d.%d.%d, %s)' % (s,v[0],v[1],v[2],sys.platform)
return s return s
except: except:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment