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

Fixed #7988 -- Corrected import of the warnings module, thanks richardh.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@8105 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Gary Wilson Jr 2008-07-27 17:24:35 +00:00
parent 12eba9efc1
commit 020f965087

View File

@ -15,11 +15,11 @@ def deprecate_follow(follow):
needed for newforms-based forms. needed for newforms-based forms.
""" """
if follow is not None: if follow is not None:
import warning import warnings
msg = ("Generic views have been changed to use newforms, and the" msg = ("Generic views have been changed to use newforms, and the"
"'follow' argument is no longer used. Please update your code" "'follow' argument is no longer used. Please update your code"
"to not use the 'follow' argument.") "to not use the 'follow' argument.")
warning.warn(msg, DeprecationWarning, stacklevel=3) warnings.warn(msg, DeprecationWarning, stacklevel=3)
def apply_extra_context(extra_context, context): def apply_extra_context(extra_context, context):
""" """