small fix

This commit is contained in:
Svitin Egor
2024-06-03 13:24:33 +03:00
parent 20dad8a5e6
commit 3dcfc923c6

View File

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