diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2011-10-18 00:47:49 +0000 |
|---|---|---|
| committer | Alex Gaynor <alex.gaynor@gmail.com> | 2011-10-18 00:47:49 +0000 |
| commit | 396fcaaef92b6e5e56175b883c2cf6fcbda7ae97 (patch) | |
| tree | b6c03f40f6503c1c66637aedd69e9568103a18e9 /django/forms/extras | |
| parent | 66210cbc702af9ff5d6b08c87d09b10bd84fc0dd (diff) | |
Remove all relative imports. We have always been at war with relative imports.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17009 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/forms/extras')
| -rw-r--r-- | django/forms/extras/__init__.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/django/forms/extras/__init__.py b/django/forms/extras/__init__.py index a7f6a9b3f6..d801e4fa80 100644 --- a/django/forms/extras/__init__.py +++ b/django/forms/extras/__init__.py @@ -1 +1,3 @@ -from widgets import * +from __future__ import absolute_import + +from django.forms.extras.widgets import * |
