Skip to content
This repository has been archived by the owner on Jan 3, 2018. It is now read-only.

Commit

Permalink
fix 'default' list
Browse files Browse the repository at this point in the history
  • Loading branch information
h4llow3En committed Nov 6, 2015
1 parent 3287761 commit dfd123e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tdo/todolist/persistence.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def load():
return json.load(backupfile)
except FileNotFoundError:
os.makedirs(os.path.dirname(jsonfile), exist_ok=True)
initdict = {'all': {}}
initdict = {'default': {}}
with open(jsonfile, 'w') as f:
json.dump(initdict, f)
return initdict
Expand Down

0 comments on commit dfd123e

Please sign in to comment.