From 3ccc7e7cf825d111b709bdec8574f3541d08f350 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Tue, 16 Apr 2013 12:21:20 +0100 Subject: [PATCH] Eo gdb: Change eo_backtrace to catch more cases. If you know where I can find decent docs about the python gdb bindings, please let me know. --- data/eo/eo_gdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/eo/eo_gdb.py b/data/eo/eo_gdb.py index 1fe8be6fbf..ab848053b8 100644 --- a/data/eo/eo_gdb.py +++ b/data/eo/eo_gdb.py @@ -29,7 +29,7 @@ class Eo_backtrace(gdb.Command): btrace = gdb.execute("backtrace", False, to_string=True).split('\n') for line in btrace: - if line.find("libeo.so") == -1 and line.find("src/lib/eo/") == -1: + if line.find("libeo.so") == -1 and line.find("lib/eo/") == -1: print line Eo_backtrace()