Skip to content
Snippets Groups Projects
Commit 3ac8c7be authored by ulif's avatar ulif
Browse files

Fix loop.

parent 5ee4cc2e
Branches
Tags
No related merge requests found
......@@ -71,7 +71,7 @@ def get_config_dict(path_list=None):
if 'diceware' not in parser.sections():
return result
conf = parser['diceware']
for key, val in OPTIONS_DEFAULTS:
for key, val in OPTIONS_DEFAULTS.items():
result[key] = conf.get(key, val)
return result
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment