summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2011-04-02 21:46:28 +0000
committerAdrian Holovaty <adrian@holovaty.com>2011-04-02 21:46:28 +0000
commit21877c39b4d4af18c2f8b7809a8d2daaebb9c698 (patch)
treee239633467605905de9cb04d3d88b1b5cd0d4853
parenteaf55548655ac085acdacfad45be9fa35c47756c (diff)
Fixed #15743 -- Fixed tense in a docstring in db/models/base.py. Thanks, jMyles
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16006 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/db/models/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/models/base.py b/django/db/models/base.py
index 4aa6cfa741..d352b9d5ae 100644
--- a/django/db/models/base.py
+++ b/django/db/models/base.py
@@ -389,7 +389,7 @@ class Model(object):
def __reduce__(self):
"""
- Provide pickling support. Normally, this just dispatches to Python's
+ Provides pickling support. Normally, this just dispatches to Python's
standard handling. However, for models with deferred field loading, we
need to do things manually, as they're dynamically created classes and
only module-level classes can be pickled by the default path.