diff --git a/update.py b/update.py index c8cf52f..f22c4bf 100644 --- a/update.py +++ b/update.py @@ -43,8 +43,11 @@ class Updater: return for source in config.get_sources_list(): - print("Start source update" + source) - self.parse_source(source) + try: + print("Start source update" + source) + self.parse_source(source) + except: + print(source + " has error") updater = Updater()