|
Revision 7979, 193 bytes
(checked in by jbronn, 4 months ago)
|
gis: Merged revisions 7921,7926-7928,7938-7941,7945-7947,7949-7950,7952,7955-7956,7961,7964-7968,7970-7978 via svnmerge from trunk.
This includes the newforms-admin branch, and thus is backwards-incompatible. The geographic admin is _not_ in this changeset, and is forthcoming.
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
import warnings |
|---|
| 2 |
warnings.warn( |
|---|
| 3 |
category = DeprecationWarning, |
|---|
| 4 |
message = "django.newforms is no longer new. Import django.forms instead.", |
|---|
| 5 |
stacklevel = 2 |
|---|
| 6 |
) |
|---|
| 7 |
from django.forms import * |
|---|