diff options
author | gumi <git@gumi.ca> | 2018-02-17 16:14:44 -0500 |
---|---|---|
committer | gumi <git@gumi.ca> | 2018-02-17 16:14:44 -0500 |
commit | 7d5d26f4f63b154a7d5c9716c290cd3c0ae046a3 (patch) | |
tree | e1199efcb6a2cc4d4dbed9e491aa741c9654fed2 | |
parent | 2e2087897136432328d71d85d5190a53f300e567 (diff) | |
download | tmwa-7d5d26f4f63b154a7d5c9716c290cd3c0ae046a3.tar.gz tmwa-7d5d26f4f63b154a7d5c9716c290cd3c0ae046a3.tar.bz2 tmwa-7d5d26f4f63b154a7d5c9716c290cd3c0ae046a3.tar.xz tmwa-7d5d26f4f63b154a7d5c9716c290cd3c0ae046a3.zip |
add missing parentheses in debug-debug
-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 |