Opened 16 years ago
Closed 16 years ago
#8117 closed (duplicate)
Custom commands are not found
Reported by: | Tomek Paczkowski | Owned by: | nobody |
---|---|---|---|
Component: | Core (Other) | Version: | dev |
Severity: | Keywords: | ||
Cc: | tomek+django@… | Triage Stage: | Unreviewed |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
Consider django/core/management/init.py , find_management_module.
When running ./manage.py and the project is not on PYTHONPATH find_management_module
is trying to import 'myproject.myapp' but it can't -- inside 'myproject' this name is
not visible, thus find_management_module should try to import just 'myapp'.
Note:
See TracTickets
for help on using tickets.
Duplicate of #5825