diff -r 5b992bcb3c86 -r fb9168c2e069 DebugClients/Python3/BreakpointWatch.py --- a/DebugClients/Python3/BreakpointWatch.py Mon Aug 08 23:08:38 2016 +0200 +++ b/DebugClients/Python3/BreakpointWatch.py Thu Sep 15 21:49:13 2016 +0200 @@ -119,7 +119,7 @@ @return Breakpoint or None, if there is no bp @rtype Breakpoint object or None """ - return Breakpoint.breaks.get(filename, lineno) + return Breakpoint.breaks.get((filename, lineno)) @staticmethod def effectiveBreak(filename, lineno, frame):