fixed but about cond. breakpoint detection (?)
[pygdb.git] / GdbTerminal.py
index 6218d64780e18e7b2e0f515e3ecf7d90bd34ac3a..abf01e34776b597382c063ddd875c872472d2ea7 100644 (file)
@@ -95,8 +95,8 @@ class GdbTerminal (DbgTerminal.DbgTerminal):
                bplines = self.__getAnswerFromCmd("info breakpoints\n")
 
                rxbp = re.compile("^\d+\s+breakpoint")
-               rxpos = re.compile("^.* at \S+:\d+$")
-               rxcond = re.compile("^\tstop only if")
+               rxpos = re.compile("^.*at \S+:\d+$")
+               rxcond = re.compile("^\s+stop only if")
 
                bpnts = []
                i = 1