diff -r 2fcea15858a5 -r 6db967480b7d version.py --- a/version.py Wed Apr 12 10:20:01 2017 +0000 +++ b/version.py Thu Apr 20 13:01:45 2017 +0300 @@ -24,10 +24,11 @@ import subprocess, os +import util.paths as paths def GetAppRevision(): rev = None - app_dir=os.path.dirname(os.path.realpath(__file__)) + app_dir=paths.AbsDir(__file__) try: pipe = subprocess.Popen( ["hg", "id", "-i"], @@ -88,8 +89,8 @@ '') # read license file - path=os.path.join(os.path.dirname(os.path.abspath(__file__))) - license_path = os.path.join(path, u"COPYING") + path=paths.AbsDir(__file__) + license_path = os.path.join(path, "COPYING") license='' if os.path.exists(license_path): with open(license_path) as f: