We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a28be8 commit 5ca88caCopy full SHA for 5ca88ca
jjclock.py
@@ -234,8 +234,8 @@ def doUpdate():
234
displaymanager.doRender(jjrenderer.renderers["updating"](), version="{0} --> {1}".format(updater.currentversion, updater.latestversion))
235
#killthreads() # stop most of the action first; reduce the amount of stuff affected by updating
236
ecode = updater.doUpdate(updater.latestversion)
237
- #killthreads() # try to shut down
238
- raise SystemExit(ecode) # force quit
+ killthreads() # try to shut down
+ sys.exit(ecode) # force quit
239
else:
240
logger.warning("will not update on windows")
241
0 commit comments