diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/debug-debug.gdb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/debug-debug.gdb b/tools/debug-debug.gdb index 79046c6..2e59437 100644 --- a/tools/debug-debug.gdb +++ b/tools/debug-debug.gdb @@ -27,9 +27,9 @@ def hit_breakpoint(): def compare(value, expected): return value == expected if not compare(value, expected): - print 'Error: mismatch, aborting ...' - print 'actual: %r' % value - print 'expect: %r' % str(expected) + print('Error: mismatch, aborting ...') + print('actual: %r' % value) + print('expect: %r' % str(expected)) gdb.execute('bt') sys.exit(1) end |