Skip to content

Commit

Permalink
Merge 3e64e44 into d033918
Browse files Browse the repository at this point in the history
  • Loading branch information
lafrech committed Jan 10, 2019
2 parents d033918 + 3e64e44 commit e4bb3cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion umongo/document.py
Expand Up @@ -140,7 +140,7 @@ def __init__(self, **kwargs):
raise AbstractDocumentError("Cannot instantiate an abstract Document")
self.is_created = False
"Return True if the document has been commited to database" # is_created's docstring
self._data = self.DataProxy(kwargs if kwargs else None)
self._data = self.DataProxy(kwargs)

def __repr__(self):
return '<object Document %s.%s(%s)>' % (
Expand Down

0 comments on commit e4bb3cd

Please sign in to comment.