Modify ↓
Opened 15 years ago
Closed 15 years ago
#5570 closed defect (fixed)
Trac import errors on AdvancedTicketWorkflowPlugin
Reported by: | Owned by: | Eli Carter | |
---|---|---|---|
Priority: | normal | Component: | AdvancedTicketWorkflowPlugin |
Severity: | normal | Keywords: | |
Cc: | Trac Release: | 0.11 |
Description
I've been trying to work with the AdvancedTicketWorkflowPlugin but I'm getting the following errors from the trac log:
2009-07-27 13:53:45,983 Trac[loader] DEBUG: Loading advancedworkflow.controller from c:\developer\trac_projects\demo1\plugins\advancedticketworkflowplugin-0.10-py2.5.egg
2009-07-27 13:53:45,983 Trac[loader] ERROR: Skipping "advancedworkflow.controller = advancedworkflow.controller": (can't import "ImportError: No module named advancedworkflow.controller")
This is a windows based stand-alone trac install, running on Python 2.5 version. Please advise.
Attachments (0)
Note: See
TracTickets for help on using
tickets.
This issue is now resolved. Found this piece of info from the web:
i've figured out the problem. once i knew it was an installation issue, i did a search and realized that setup.py *must* be run from the directory that it is located in. so "/usr/src/trac/setup.py install" won't work. instead i had to navigate to the /usr/src/trac directory and run "./setup.py install" that worked ok.
That fixed my issue as well.