Skip to content

Commit 460e1e5

Browse files
committed
Fix breakpoints
1 parent ae9a6e6 commit 460e1e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugin/pymode.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,13 +151,13 @@ endif
151151

152152
if !pymode#Default("g:pymode_breakpoint", 1) || g:pymode_breakpoint
153153

154-
if !pymode#Default("g:pymode_breakpoint_cmd", "import ipdb; ipdb.set_trace() ### XXX BREAKPOINT") && has("python")
154+
if !pymode#Default("g:pymode_breakpoint_cmd", "import ipdb; ipdb.set_trace() # XXX BREAKPOINT") && has("python")
155155
python << EOF
156156
from imp import find_module
157157
try:
158158
find_module('ipdb')
159159
except ImportError:
160-
vim.command('let g:pymode_breakpoint_cmd = "import pdb; pdb.set_trace() ### XXX BREAKPOINT"')
160+
vim.command('let g:pymode_breakpoint_cmd = "import pdb; pdb.set_trace() # XXX BREAKPOINT"')
161161
EOF
162162
endif
163163

0 commit comments

Comments
 (0)