make config.py output directly applicable

This commit is contained in:
b3yond 2018-11-06 17:50:57 +01:00
parent bc7a4a72f8
commit 945a90c7e1

View file

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