Ticket #13449: instance-typo.diff

File instance-typo.diff, 539 bytes (added by Stephane Raimbault, 14 years ago)

Typo

  • 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):  
    251251    def __init__(self, *args, **kwargs):
    252252        signals.pre_init.send(sender=self.__class__, args=args, kwargs=kwargs)
    253253
    254         # Set up the storage for instane state
     254        # Set up the storage for instance state
    255255        self._state = ModelState()
    256256
    257257        # There is a rather weird disparity here; if kwargs, it's set, then args
Back to Top