noob: trying to set a breakpoint
已回答
Hi - first time user of pycharm and I'm trying to set a breakpoint on the first line of an existing script but execution is not stopping at that line.

请先登录再写评论。
Hi Oliver! Your breakpoints are grey, instead of red, because they are muted. You should open your debug tool window (https://www.jetbrains.com/help/pycharm/2016.1/debug-tool-window.html#debugtoolbar) and disable "Mute breakpoints" option.
Here's the command line from the console window:
/usr/bin/python /Applications/PyCharm.app/Contents/helpers/pydev/pydevd.py --multiproc --qt-support --client 127.0.0.1 --port 58069 --file /Users/oliverpike/Downloads/gitinspector-master/gitinspector.py --file-type=** --format=text "--exclude=tests/mockdata,author:^(?!(bharath kallur)|(Bijeesh Pudukkudi)|(Karthik Subramaniam)|(Alejandro Mier))" --since=12/Jan/2016
pydev debugger: process 15364 is connecting
Connected to pydev debugger (build 162.1628.8)
I noticed that if I hit pause, execution will stop at a point where I had a break point set prior to kicking off execution.