views:

699

answers:

1

Eclipse/PyDev, Python 2.6, Django 1.1

All is working in run mode. If I put debug point inside manage.py file, breakpoint worked. But when I putted it in any action method, it causes nothing :(

+1  A: 

Usually the problem is that you're running with auto-reload in django, in which case a different process is actually feeding the pages, so, you need to run it with the no reload option or use the remote debugger.

Fabio Zadrozny