diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2011-03-14 05:45:55 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2011-03-14 05:45:55 +0000 |
| commit | e494f88be0f1bc2aa7742299b385ca95012a7b3c (patch) | |
| tree | 9efacc1e06206074254a7fef172429bba04d18c1 | |
| parent | 12a2a231005dd965732a8321add66bf1f2387944 (diff) | |
Fixed #15601 -- Corrected a weird typo. Thanks, jMyles
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15800 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/db/models/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/models/base.py b/django/db/models/base.py index 4000379c3e..286f9b0de6 100644 --- a/django/db/models/base.py +++ b/django/db/models/base.py @@ -397,7 +397,7 @@ class Model(object): model = self.__class__ # The obvious thing to do here is to invoke super().__reduce__() # for the non-deferred case. Don't do that. - # On Python 2.4, there is something wierd with __reduce__, + # On Python 2.4, there is something weird with __reduce__, # and as a result, the super call will cause an infinite recursion. # See #10547 and #12121. defers = [] |
