diff options
| author | Gary Wilson Jr <gary.wilson@gmail.com> | 2008-07-27 17:25:37 +0000 |
|---|---|---|
| committer | Gary Wilson Jr <gary.wilson@gmail.com> | 2008-07-27 17:25:37 +0000 |
| commit | 4774c8d6739da02a7890f1ff80a87b6ca87821a7 (patch) | |
| tree | ce2049a1f3d822daca9f8589ffa36b135a5307d2 | |
| parent | 020f965087e82a7e4e9aede9542365206f3ca162 (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.py | 4 |
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): |
