From 3dcfc923c69eba70c5651d1521896cf293710c7a Mon Sep 17 00:00:00 2001 From: Svitin Egor Date: Mon, 3 Jun 2024 13:24:33 +0300 Subject: [PATCH] small fix --- update.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/update.py b/update.py index bbe8b44..bff2141 100644 --- a/update.py +++ b/update.py @@ -34,7 +34,7 @@ class Updater: config.update_sources() def do_action(self): - print("Start Updater"); + print("Start Updater") print("Start Configure") self.update_config() if hasattr(self.args, 'source') and self.is_source_exists(self.args.source): @@ -43,11 +43,11 @@ class Updater: return for source in config.get_sources_list(): - try: - print("Start source update" + source) - self.parse_source(source) - except: - print(source + " has error") + #try: + print("Start source update" + source) + self.parse_source(source) + #except: + # print(source + " has error") updater = Updater()