Update default INITIAL_FOLDER_IN_DIALOGS to use '/' as it is most
likely available on most unsuppored platforms.
This commit is contained in:
Andrew Senetar 2019-03-21 18:07:00 -05:00
parent f7e20c8aa6
commit 1b879259a4
Signed by: arsenetar
GPG Key ID: C63300DCE48AB2F1
1 changed files with 2 additions and 1 deletions

View File

@ -23,4 +23,5 @@ elif ISOSX:
elif ISLINUX:
INITIAL_FOLDER_IN_DIALOGS = '/'
else:
pass # unsupported platform
# unsupported platform, however '/' is a good guess for a path which is available
INITIAL_FOLDER_IN_DIALOGS = '/'