1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

configurable filename.

This commit is contained in:
Shlomi Fish 2018-05-01 14:45:22 +03:00
parent 23001f0f0f
commit e915b6daef

View file

@ -1226,12 +1226,13 @@ Unsupported game for import.
if not idir:
idir = self.app.dn.savegames
d = tkinter_tkfiledialog.Open()
if 'PYSOL_DEBUG_IMPORT' not in os.environ:
key = 'PYSOL_DEBUG_IMPORT'
if key not in os.environ:
filename = d.show(filetypes=self.FILETYPES,
defaultextension=self.DEFAULTEXTENSION,
initialdir=idir, initialfile=ifile)
else:
filename = '/home/shlomif/m2.txt'
filename = os.environ[key]
if filename:
filename = os.path.normpath(filename)
# filename = os.path.normcase(filename)