mirror of
https://github.com/django/django.git
synced 2025-03-31 11:37:06 +00:00
This is a backwards-incompatible change; consult BackwardsIncompatibleChanges for details. Fixes #3567, #3621, #4345, #5361, #5655, #7415. Many thanks to Marty Alchin who did the vast majority of this work. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8244 bcc190cf-cafb-0310-a4f2-bffc1f526a37
6 lines
177 B
Python
6 lines
177 B
Python
import warnings
|
|
|
|
from django.core.files.images import get_image_dimensions
|
|
|
|
warnings.warn("django.utils.images has been moved to django.core.files.images.", DeprecationWarning)
|