Pycharm 3 debugger not working with Django

enter image description here

I am on win7 and using pycharm 3. I set a breakpoint and hit the debug button. No mistakes. Stepwise intersection of grays. The output is empty regardless of syntax errors. Work continues normally. My project settings:

enter image description here

Any idea how to fix this?

edit: I only have 1 breakpoint on line 35, and it seems like it's selected.

enter image description here

+4
source share
1 answer

I ran into this problem before and noticed that IntelliJ launched several instances of my django project. Closing IntelliJ (and all running instances of the project) and trying to solve the problem again

+2
source

Source: https://habr.com/ru/post/1525668/


All Articles