diff --git a/run.py b/run.py index adde8d9..8ff8fc5 100644 --- a/run.py +++ b/run.py @@ -127,12 +127,12 @@ def save_file(): def status(string): - if args['source_img']: + if 'cli_mode' in args: print("Status: " + string) else: status_label["text"] = "Status: " + string window.update() - + def start(): print("DON'T WORRY. IT'S NOT STUCK/CRASHED.\n" * 5) @@ -184,6 +184,7 @@ def start(): if __name__ == "__main__": global status_label, window if args['source_img']: + args['cli_mode'] = True start() quit() window = tk.Tk()