mirror of
https://github.com/django/django.git
synced 2025-03-13 19:00:45 +00:00
parent
18ffdb1772
commit
f40c82213f
7
django/contrib/admin/util.py
Normal file
7
django/contrib/admin/util.py
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
import warnings
|
||||||
|
|
||||||
|
warnings.warn(
|
||||||
|
"The django.contrib.admin.util module has been renamed. "
|
||||||
|
"Use django.contrib.admin.utils instead.", PendingDeprecationWarning)
|
||||||
|
|
||||||
|
from django.contrib.admin.utils import *
|
7
django/contrib/gis/db/backends/util.py
Normal file
7
django/contrib/gis/db/backends/util.py
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
import warnings
|
||||||
|
|
||||||
|
warnings.warn(
|
||||||
|
"The django.contrib.gis.db.backends.util module has been renamed. "
|
||||||
|
"Use django.contrib.gis.db.backends.utils instead.", PendingDeprecationWarning)
|
||||||
|
|
||||||
|
from django.contrib.gis.db.backends.utils import *
|
7
django/db/backends/util.py
Normal file
7
django/db/backends/util.py
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
import warnings
|
||||||
|
|
||||||
|
warnings.warn(
|
||||||
|
"The django.db.backends.util module has been renamed. "
|
||||||
|
"Use django.db.backends.utils instead.", PendingDeprecationWarning)
|
||||||
|
|
||||||
|
from django.db.backends.utils import *
|
7
django/forms/util.py
Normal file
7
django/forms/util.py
Normal file
@ -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 *
|
Loading…
x
Reference in New Issue
Block a user