util/paths.py
changeset 1744 69dfdb26f600
parent 1740 b789b695b5c6
child 1847 6198190bc121
--- a/util/paths.py	Tue Aug 15 17:01:51 2017 +0300
+++ b/util/paths.py	Tue Aug 15 22:38:43 2017 +0300
@@ -41,7 +41,7 @@
     return os.path.join(AbsDir(file), *args)
 
 
-def AbsParentDir(file, level = 1):
+def AbsParentDir(file, level=1):
     path = AbsDir(file)
     for i in range(0, level):
         path = os.path.dirname(path)