Skip to content

Commit

Permalink
Corrected spacing in warning message.
Browse files Browse the repository at this point in the history
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8106 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
gdub committed Jul 27, 2008
1 parent 020f965 commit 4774c8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions django/views/generic/create_update.py
Expand Up @@ -17,8 +17,8 @@ def deprecate_follow(follow):
if follow is not None: if follow is not None:
import warnings 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.")
warnings.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):
Expand Down

0 comments on commit 4774c8d

Please sign in to comment.