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()