translated to english, added an exception for SystemExit to avoid an error when updating

This commit is contained in:
raphael60650 2021-07-14 14:44:47 +02:00
parent 6d1411e199
commit 2c41c0f04c

View file

@ -45,5 +45,5 @@ def check_update(self):
self.translate("Can't connect to internet. Download will be disabled."))
self.option["disable_download"] = True
except:
self.log_error()
except SystemExit: pass
except: self.log_error()