Django

Code

Changeset 4957

Show
Ignore:
Timestamp:
04/08/07 20:05:21 (2 years ago)
Author:
adrian
Message:

Fixed #3939 -- Fixed typo in docs/modpython.txt. Thanks, jack.mangels@mexpro.com

Files:

Legend:

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

    r4897 r4957  
    5858.. caution:: 
    5959 
    60     Is you are using Windows, remember that the path will contain backslashes. 
     60    If you're using Windows, remember that the path will contain backslashes. 
    6161    This string is passed through Python's string parser twice, so you need to 
    6262    escape each backslash **twice**:: 
     
    6464        PythonPath "['c:\\\\path\\\\to\\\\project'] + sys.path" 
    6565 
    66     or use raw strings:: 
     66    Or, use raw strings:: 
    6767 
    6868        PythonPath "[r'c:\\path\\to\\project'] + sys.path" 
    69  
    7069 
    7170You can also add directives such as ``PythonAutoReload Off`` for performance.