fix path to tu-dokumente if it already exists in current directory
This commit is contained in:
parent
5096d85a2c
commit
cbd5de17aa
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue