Browse Source

remove redundant exit call

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

1
engine/start.py

@ -146,7 +146,6 @@ def exitWithMessage(message:str):
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()
sys.exit(title + ": " + message)
def setProcessName(executableName):

Loading…
Cancel
Save