![]() | 1 | initial version |
I would insert a line import pdb; pdb.set_trace()
at the beginning of askbot/models/signals.py
, then step with the debugger (start application in the shell then type n
into the debugger input).
There must be a failing import inside which is masked by the django application loading code.
![]() | 2 | No.2 Revision |
I would insert a line
import pdb;
pdb.set_trace()pdb.set_trace()
at the beginning of askbot/models/signals.py
, then step with the debugger (start application in the shell then type n
into the debugger input).
There must be a failing import inside which is masked by the django application loading code.