Ticket #14384: 14384.patch
File 14384.patch, 622 bytes (added by , 14 years ago) |
---|
-
docs/howto/deployment/modwsgi.txt
47 47 48 48 If your project is not on your ``PYTHONPATH`` by default you can add:: 49 49 50 sys.path.append('/usr/local/django') 50 path = '/usr/local/django' 51 if path not in sys.path: 52 sys.path.append(path) 51 53 52 54 just above the final ``import`` line to place your project on the path. Remember to 53 55 replace 'mysite.settings' with your correct settings file, and '/usr/local/django'