From 288299aad282cc3f6b1b6a4a1592f0b0d68c4c1e Mon Sep 17 00:00:00 2001 From: Nils <> Date: Mon, 22 Jun 2020 20:37:46 +0200 Subject: [PATCH] remove redundant exit call --- engine/start.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/engine/start.py b/engine/start.py index a0f8919..ebfb30f 100644 --- a/engine/start.py +++ b/engine/start.py @@ -145,8 +145,7 @@ def exitWithMessage(message:str): else: from PyQt5.QtWidgets import QMessageBox #This is the start file for the Qt client so we know at least that Qt is installed and use that for a warning. - QMessageBox.critical(qtApp.desktop(), title, message) - qtApp.quit() + QMessageBox.critical(qtApp.desktop(), title, message) sys.exit(title + ": " + message) def setProcessName(executableName):