diff options
| author | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2007-08-12 03:29:07 +0000 |
|---|---|---|
| committer | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2007-08-12 03:29:07 +0000 |
| commit | cc42b2fde8e982b7157ebdf8843677c7d9d6206e (patch) | |
| tree | fff6252dfa49e08ae9edefd851ebb67e9c9797b6 | |
| parent | f128c7bbb787be670a1a827c5bf810d0ea78ce20 (diff) | |
Fixed #5015 -- Typo fix in oldforms. Thanks, teyc@cognoware.com.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5865 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/oldforms/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/oldforms/__init__.py b/django/oldforms/__init__.py index b3d78f8919..93cfa1d8fa 100644 --- a/django/oldforms/__init__.py +++ b/django/oldforms/__init__.py @@ -204,7 +204,7 @@ class FormFieldCollection(FormFieldWrapper): def __str__(self): return unicode(self).encode('utf-8') - def __str__(self): + def __unicode__(self): return unicode(self.formfield_dict) def __getitem__(self, template_key): |
