fix small bug, print current config if directly called #64
This commit is contained in:
parent
238dd20d20
commit
d964927a3f
|
@ -9,7 +9,7 @@ def load_env():
|
||||||
:return: config dictionary of dictionaries.
|
:return: config dictionary of dictionaries.
|
||||||
"""
|
"""
|
||||||
with open('config.toml.example') as defaultconf:
|
with open('config.toml.example') as defaultconf:
|
||||||
config = toml.load(configfile)
|
config = toml.load(defaultconf)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
config['twitter']['consumer_key'] = os.environ['CONSUMER_KEY']
|
config['twitter']['consumer_key'] = os.environ['CONSUMER_KEY']
|
||||||
|
@ -55,3 +55,8 @@ try:
|
||||||
config = toml.load(configfile)
|
config = toml.load(configfile)
|
||||||
except FileNotFoundError:
|
except FileNotFoundError:
|
||||||
config = load_env()
|
config = load_env()
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
for category in config:
|
||||||
|
for key in config[category]:
|
||||||
|
print(key + " = " + str(config[category][key]))
|
||||||
|
|
Loading…
Reference in a new issue