summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGary Wilson Jr <gary.wilson@gmail.com>2008-07-27 17:25:37 +0000
committerGary Wilson Jr <gary.wilson@gmail.com>2008-07-27 17:25:37 +0000
commit4774c8d6739da02a7890f1ff80a87b6ca87821a7 (patch)
treece2049a1f3d822daca9f8589ffa36b135a5307d2
parent020f965087e82a7e4e9aede9542365206f3ca162 (diff)
Corrected spacing in warning message.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8106 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/views/generic/create_update.py4
1 files 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):