From 2c41c0f04cd04eb85a798456a81cc966ff7ee562 Mon Sep 17 00:00:00 2001 From: raphael60650 Date: Wed, 14 Jul 2021 14:44:47 +0200 Subject: [PATCH] translated to english, added an exception for SystemExit to avoid an error when updating --- source/check_update.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/check_update.py b/source/check_update.py index ac17b6a..6906136 100644 --- a/source/check_update.py +++ b/source/check_update.py @@ -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()