diff options
| author | Claude Paroz <claude@2xlibre.net> | 2013-02-24 22:58:07 +0100 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2013-02-24 22:59:15 +0100 |
| commit | 5eebb49c690097ec950b4db2a8eaa892c27433c0 (patch) | |
| tree | bbc74dc1e9c695ec9849601880402eb117dd1b4d | |
| parent | ae2a8bb4569e569d0cc2cd8173443862418d3698 (diff) | |
Fixed #19908 -- Added missing import in forms.py
Thanks loic84 for the report.
| -rw-r--r-- | django/forms/forms.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/django/forms/forms.py b/django/forms/forms.py index dccb12657e..20a2e426bb 100644 --- a/django/forms/forms.py +++ b/django/forms/forms.py @@ -5,6 +5,7 @@ Form classes from __future__ import absolute_import, unicode_literals import copy +import warnings from django.core.exceptions import ValidationError from django.forms.fields import Field, FileField |
