#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 , 16 years ago
comment:2 by , 16 years ago
| Resolution: | → duplicate |
|---|---|
| Status: | new → closed |
Closing in favor of #11344 which reports the same thing more clearly and also has another comment on the same section.
Note:
See TracTickets
for help on using tickets.
What Python error? A line containing
sys.path.append('/your/project/path')isn't dependent on coming after an import ofdjango.core.handlers.wsgi. Or did you read that sentence as saying to put thesys.path.appendabove the first import? I suppose that could be clarified.