Django

Code

Changeset 8106

Show
Ignore:
Timestamp:
07/27/08 12:25:37 (4 months ago)
Author:
gwilson
Message:

Corrected spacing in warning message.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/views/generic/create_update.py

    r8105 r8106  
    1818        import warnings 
    1919        msg = ("Generic views have been changed to use newforms, and the" 
    20                "'follow' argument is no longer used.  Please update your code" 
    21                "to not use the 'follow' argument.") 
     20               " 'follow' argument is no longer used.  Please update your code" 
     21               " to not use the 'follow' argument.") 
    2222        warnings.warn(msg, DeprecationWarning, stacklevel=3) 
    2323