Skip to content

Commit 3bd42d6

Browse files
authored
Esp32ExceptionDecoder: fix compatibility with esp-idf master (platformio#324)
1 parent bd2d34c commit 3bd42d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

monitor/filter_exception_decoder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class Esp32ExceptionDecoder(DeviceMonitorFilter):
3232
def __call__(self):
3333
self.buffer = ""
3434
self.backtrace_re = re.compile(
35-
r"^Backtrace: ((0x[0-9a-f]+:0x[0-9a-f]+ ?)+)\s*"
35+
r"^Backtrace: ?((0x[0-9a-f]+:0x[0-9a-f]+ ?)+)\s*"
3636
)
3737

3838
self.firmware_path = None

0 commit comments

Comments
 (0)