Fixed #4330 -- Fixed typo when retrieving field names. Patch from Marc Fargas.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@5293 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Malcolm Tredinnick 2007-05-19 18:54:35 +00:00
parent 7e975bb636
commit d8db013eea
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ class FormPreview(object):
""" """
while 1: while 1:
try: try:
f = self.form.fields[name] f = self.form.base_fields[name]
except KeyError: except KeyError:
break # This field name isn't being used by the form. break # This field name isn't being used by the form.
name += '_' name += '_'