Opened 15 years ago

Closed 15 years ago

Last modified 13 years ago

#11343 closed (duplicate)

Typo on the page "How to use Django with Apache and mod_wsgi" in dev documentation

Reported by: achew22 Owned by: nobody
Component: Documentation Version: dev
Severity: Keywords: Documentation, typo
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

If you read the dev docs on WSGI (http://docs.djangoproject.com/en/dev/howto/deployment/modwsgi/#basic-configuration) it says "just above the import line to place your project on the path". That will cause a python error, I think the line should be something like "just below the import line to place your project on the path"

Change History (3)

comment:1 by Karen Tracey, 15 years ago

What Python error? A line containing sys.path.append('/your/project/path') isn't dependent on coming after an import of django.core.handlers.wsgi. Or did you read that sentence as saying to put the sys.path.append above the first import? I suppose that could be clarified.

comment:2 by Karen Tracey, 15 years ago

Resolution: duplicate
Status: newclosed

Closing in favor of #11344 which reports the same thing more clearly and also has another comment on the same section.

comment:3 by Jacob, 13 years ago

milestone: 1.1

Milestone 1.1 deleted

Note: See TracTickets for help on using tickets.
Back to Top