Browse Source

remove redundant exit call

master
Nils 4 years ago
parent
commit
288299aad2
  1. 3
      engine/start.py

3
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):

Loading…
Cancel
Save