version.py
changeset 1742 92932cd370a4
parent 1741 dd94b9a68c61
child 1744 69dfdb26f600
--- a/version.py	Tue Aug 15 16:01:18 2017 +0300
+++ b/version.py	Tue Aug 15 16:48:49 2017 +0300
@@ -42,7 +42,7 @@
 
 def GetAppRevision():
     rev = None
-    app_dir=paths.AbsDir(__file__)
+    app_dir = paths.AbsDir(__file__)
     try:
         pipe = subprocess.Popen(
             ["hg", "id", "-i"],
@@ -103,9 +103,9 @@
     '')
 
     # read license file
-    path=paths.AbsDir(__file__)
+    path = paths.AbsDir(__file__)
     license_path = os.path.join(path, "COPYING")
-    license=''
+    license = ''
     if os.path.exists(license_path):
         with open(license_path) as f:
             info.License += f.read()