Skip to content

Commit

Permalink
[Bug] Corrected a mis-spelt key word
Browse files Browse the repository at this point in the history
  • Loading branch information
sunday Nwuguru committed May 24, 2016
1 parent 0a86e4c commit cd044b6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified app.db
Binary file not shown.
2 changes: 1 addition & 1 deletion app/resource.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def put(self, id, item_id):

item.task = args.get('task',item.task)
done = args.get('done',False)
item.done = True if done == 'True' else Fals
item.done = True if done == 'True' else False

if not save(item):
abort(409, message="Unable to update record")
Expand Down

0 comments on commit cd044b6

Please sign in to comment.