mirror of
				https://github.com/django/django.git
				synced 2025-10-31 01:25:32 +00:00 
			
		
		
		
	[1.8.x] Fixed mistake in Model.from_db() example.
Backport of fd869cceac from master
			
			
This commit is contained in:
		| @@ -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): | ||||
|   | ||||
		Reference in New Issue
	
	Block a user