From f4e45e60525edfd20754ee073ed2c12184c2f187 Mon Sep 17 00:00:00 2001 From: Alexander Xu Date: Fri, 30 Jun 2023 09:35:02 -0700 Subject: [PATCH] change exec --- kindlecomicconverter/startup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kindlecomicconverter/startup.py b/kindlecomicconverter/startup.py index 50c30b2..c92579d 100644 --- a/kindlecomicconverter/startup.py +++ b/kindlecomicconverter/startup.py @@ -39,7 +39,7 @@ def start(): KCCUI = KCC_gui.KCCGUI(KCCAplication, KCCWindow) for i in range(1, len(sys.argv)): KCCUI.handleMessage(sys.argv[i]) - sys.exit(KCCAplication.exec()) + sys.exit(KCCAplication.exec_()) def startC2E():