I'm working with my Django app. For some reason an element of a list is being assigned incorrectly.
I'm trying to set a break where I think the error is occurring. ( line 20 )
I'm invoking pdb with this line of code:
import pdb; pdb.set_trace()
However, inside the code, I can't seem to set a Break.
(Pdb) b 20
*** Blank or comment
(Pdb) break 20
*** Blank or comment
What am I doing wrong?