summaryrefslogtreecommitdiff
path: root/django/forms/util.py
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-09-16 12:53:42 -0400
committerTim Graham <timograham@gmail.com>2013-09-16 12:53:42 -0400
commitf40c82213f28109be8eb3ee516bc4a13461352c8 (patch)
treebad8d95ef63e1b62b09acfc84f961c5bffdee9db /django/forms/util.py
parent18ffdb1772ba60e085cff8fd9a1d4a7b129b4032 (diff)
Added backwards compatability shims for util modules.
refs #17627
Diffstat (limited to 'django/forms/util.py')
-rw-r--r--django/forms/util.py7
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 *