diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2006-12-05 19:55:51 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2006-12-05 19:55:51 +0000 |
| commit | a794acbd7a50076d060e8867fcc2c9a5ff611805 (patch) | |
| tree | bcc4205eab585e42b050b83d4495636b13a72c81 | |
| parent | be217bce53f4449708e20e2b71d9c8c4bf5b81eb (diff) | |
newforms: Removed DEFAULT_ENCODING import from fields.py
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4162 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/newforms/fields.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/newforms/fields.py b/django/newforms/fields.py index b3d44c24ae..04f6848c64 100644 --- a/django/newforms/fields.py +++ b/django/newforms/fields.py @@ -2,7 +2,7 @@ Field classes """ -from util import ValidationError, DEFAULT_ENCODING, smart_unicode +from util import ValidationError, smart_unicode from widgets import TextInput, CheckboxInput, Select, SelectMultiple import datetime import re |
