summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-02-03 04:06:13 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-02-03 04:06:13 +0000
commit3815ff7ec5c9cf5e38f10673f6d2cd124e8c3fb4 (patch)
tree60a3de675d1d91bb8e879158f913fa0e80efc72a
parent8926a10fea3f6877b7593cb72c416748f1811905 (diff)
Fixed #6313 -- Typo fix pointed out by thejaswi_puthraya.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7067 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/newforms/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/newforms/models.py b/django/newforms/models.py
index fd0087a3b1..0ee911a82f 100644
--- a/django/newforms/models.py
+++ b/django/newforms/models.py
@@ -228,7 +228,7 @@ class ModelFormMetaclass(type):
opts = ModelFormOptions(attrs.get('Meta', None))
attrs['_meta'] = opts
- # Don't allow more than one Meta model defenition in bases. The fields
+ # Don't allow more than one Meta model definition in bases. The fields
# would be generated correctly, but the save method won't deal with
# more than one object.
base_models = []