fix path to tu-dokumente if it already exists in current directory

This commit is contained in:
Bela 2018-11-02 17:13:57 +01:00
parent 5096d85a2c
commit cbd5de17aa

View file

@ -269,7 +269,7 @@ def defaultConfig():
nextTo = os.path.join(here, "..", FORMS_DIRNAME)
if os.path.exists(nextTo):
return nextTo
nextTo = os.path.join(here, "..", FORMS_DIRNAME)
nextTo = os.path.join(here, FORMS_DIRNAME)
if os.path.exists(nextTo):
# already in current dir
return nextTo