Fixed argv bug. Doh!

This commit is contained in:
MikeTheWatchGuy 2019-08-13 15:09:48 -04:00
parent ce6d6a5468
commit 7d541255e6
1 changed files with 1 additions and 1 deletions

View File

@ -269,7 +269,7 @@ How about a GUI **_and_** traditional CLI argument in 1 line of code?
import PySimpleGUI as sg
import sys
fname = sys.argv[1] if len(sys.argv) == 1 else sg.PopupGetFile('Document to open')
fname = sys.argv[1] if len(sys.argv) > 1 else sg.PopupGetFile('Document to open')
if not fname:
sg.Popup("Cancel", "No filename supplied")