Force-exit during plugin migration

pull/66/head
Florian Bach 2 years ago
parent 2904e187c4
commit d6b87d7413

@ -146,7 +146,12 @@ class ACSMInput(FileTypePlugin):
plugins["ACSM Input"] = os.path.join(self.pluginsdir, "ACSM Input.zip")
ui_plg_config['plugins'] = plugins
return
print("Need another restart due to plugin update ...")
# "Rude" exit, but otherwise it won't work ...
try:
os._exit(42)
except TypeError:
os._exit()
# Make sure the GUI extension is loaded:

Loading…
Cancel
Save