diff options
| author | Tim Graham <timograham@gmail.com> | 2013-09-16 12:53:42 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-09-16 12:53:42 -0400 |
| commit | f40c82213f28109be8eb3ee516bc4a13461352c8 (patch) | |
| tree | bad8d95ef63e1b62b09acfc84f961c5bffdee9db /django/forms/util.py | |
| parent | 18ffdb1772ba60e085cff8fd9a1d4a7b129b4032 (diff) | |
Added backwards compatability shims for util modules.
refs #17627
Diffstat (limited to 'django/forms/util.py')
| -rw-r--r-- | django/forms/util.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/django/forms/util.py b/django/forms/util.py new file mode 100644 index 0000000000..b97b10dd3d --- /dev/null +++ b/django/forms/util.py @@ -0,0 +1,7 @@ +import warnings + +warnings.warn( + "The django.forms.util module has been renamed. " + "Use django.forms.utils instead.", PendingDeprecationWarning) + +from django.forms.utils import * |
