From 945a90c7e1ad379b8310382ce7ceb61cf79f1e1d Mon Sep 17 00:00:00 2001 From: b3yond Date: Tue, 6 Nov 2018 17:50:57 +0100 Subject: [PATCH] make config.py output directly applicable --- config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.py b/config.py index 2b8a6cb..d47bb8e 100755 --- a/config.py +++ b/config.py @@ -60,4 +60,4 @@ except FileNotFoundError: if __name__ == "__main__": for category in config: for key in config[category]: - print(key + " = " + str(config[category][key])) + print(key + "=" + str(config[category][key]))