0
0
mirror of https://github.com/django/django.git synced 2024-11-30 23:20:50 +01:00

Added DeprecationWarning for django.contrib.localflavor.

Note this is DeprecationWarning instead of PendingDeprecationWarning because we've decided
to accelerate this particular deprecation.
This commit is contained in:
Adrian Holovaty 2012-10-15 09:37:29 -05:00
parent 2236351b9e
commit 05b8491622

View File

@ -0,0 +1,2 @@
import warnings
warnings.warn("django.contrib.localflavor is deprecated. Use the separate django-localflavor-* packages instead.", DeprecationWarning)