diff -r c3c3d1318130 -r 69dfdb26f600 util/paths.py --- 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)