aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/idlelib/Debugger.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/idlelib/Debugger.py')
-rw-r--r--Lib/idlelib/Debugger.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/Debugger.py b/Lib/idlelib/Debugger.py
index a82fdbb21b5..30d0002eaf6 100644
--- a/Lib/idlelib/Debugger.py
+++ b/Lib/idlelib/Debugger.py
@@ -331,7 +331,7 @@ class Debugger:
for editwin in pyshell_edit_windows:
filename = editwin.io.filename
try:
- for lineno in editwin.get_current_breaks():
+ for lineno in editwin.breakpoints:
self.set_breakpoint_here(filename, lineno)
except AttributeError:
continue