From 4774c8d6739da02a7890f1ff80a87b6ca87821a7 Mon Sep 17 00:00:00 2001 From: Gary Wilson Jr Date: Sun, 27 Jul 2008 17:25:37 +0000 Subject: [PATCH] Corrected spacing in warning message. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8106 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/views/generic/create_update.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/django/views/generic/create_update.py b/django/views/generic/create_update.py index a64915298f..aaa0bdc4b6 100644 --- a/django/views/generic/create_update.py +++ b/django/views/generic/create_update.py @@ -17,8 +17,8 @@ def deprecate_follow(follow): if follow is not None: import warnings msg = ("Generic views have been changed to use newforms, and the" - "'follow' argument is no longer used. Please update your code" - "to not use the 'follow' argument.") + " 'follow' argument is no longer used. Please update your code" + " to not use the 'follow' argument.") warnings.warn(msg, DeprecationWarning, stacklevel=3) def apply_extra_context(extra_context, context):