[1.8.x] Fixed mistake in Model.from_db() example.

Backport of fd869cceac from master
This commit is contained in:
Luke 2015-07-02 19:00:56 -04:00 committed by Tim Graham
parent 342074f4a4
commit e2acbfb69b
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ are loaded from the database::
instance._state.adding = False
instance._state.db = db
# customization to store the original field values on the instance
instance._loaded_values = zip(field_names, values)
instance._loaded_values = dict(zip(field_names, values))
return instance
def save(self, *args, **kwargs):