Django

Code

Changeset 4269

Show
Ignore:
Timestamp:
12/30/06 01:48:11 (2 years ago)
Author:
adrian
Message:

Fixed typo in a docstring in django/contrib/admin/views/main.py

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/contrib/admin/views/main.py

    r4265 r4269  
    4747    Ensure that primary key values do not confuse the admin URLs by escaping 
    4848    any '/', '_' and ':' characters. Similar to urllib.quote, except that the 
    49     quoting is slightly different so that it doesn't get autoamtically 
    50     unquoted by the web browser. 
     49    quoting is slightly different so that it doesn't get automatically 
     50    unquoted by the Web browser. 
    5151    """ 
    5252    if type(s) != type(''):