Ticket #13449: instance-typo.diff
File instance-typo.diff, 539 bytes (added by , 15 years ago) |
---|
-
django/db/models/base.py
diff --git a/django/db/models/base.py b/django/db/models/base.py index d8c4a7e..a65fd70 100644
a b class Model(object): 251 251 def __init__(self, *args, **kwargs): 252 252 signals.pre_init.send(sender=self.__class__, args=args, kwargs=kwargs) 253 253 254 # Set up the storage for instan e state254 # Set up the storage for instance state 255 255 self._state = ModelState() 256 256 257 257 # There is a rather weird disparity here; if kwargs, it's set, then args