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'.

Change History (1)

comment:1 by Russell Keith-Magee, 16 years ago

Resolution: duplicate
Status: newclosed

Duplicate of #5825

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