Django

Code

Changeset 8147

Show
Ignore:
Timestamp:
07/29/08 22:19:31 (5 months ago)
Author:
mtredinnick
Message:

A couple of small typo fixes in the settings docs. Fixed #8032.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/settings.txt

    r8015 r8147  
    538538Default:: 
    539539 
    540     ("django.core.files.fileuploadhandler.MemoryFileUploadHandler", 
    541      "django.core.files.fileuploadhandler.TemporaryFileUploadHandler",) 
     540    ("django.core.files.uploadhandler.MemoryFileUploadHandler", 
     541     "django.core.files.uploadhandler.TemporaryFileUploadHandler",) 
    542542 
    543543A tuple of handlers to use for uploading. See `file uploads`_ for details. 
     
    564564The directory to store data temporarily while uploading files. If ``None``, 
    565565Django will use the standard temporary directory for the operating system. For 
    566 example, this will default to '/tmp' on *nix-style operating systems. 
     566example, this will default to '/tmp' on \*nix-style operating systems. 
    567567 
    568568See `file uploads`_ for details.