From 47dec26d88c48e15de6addc640d9069cc146a32e Mon Sep 17 00:00:00 2001 From: Egor Svitin Date: Wed, 22 Feb 2023 09:19:23 +0300 Subject: [PATCH] remove debug info --- configs/configs.py | 3 --- update.py | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/configs/configs.py b/configs/configs.py index 23b1e65..3765b12 100644 --- a/configs/configs.py +++ b/configs/configs.py @@ -1,8 +1,5 @@ import os -for name, value in os.environ.items(): - print("{0}: {1}".format(name, value)) - CONFIGS = { 'db' : { 'name' : os.environ['DB_NAME'], diff --git a/update.py b/update.py index f22c4bf..bbe8b44 100644 --- a/update.py +++ b/update.py @@ -38,7 +38,7 @@ class Updater: print("Start Configure") self.update_config() if hasattr(self.args, 'source') and self.is_source_exists(self.args.source): - print("Start source update" + self.args.source) + print("Start single source" + self.args.source) self.parse_source(self.args.source) return