diff options
Diffstat (limited to 'src/test/bt_test.py')
-rwxr-xr-x | src/test/bt_test.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/bt_test.py b/src/test/bt_test.py index 2de9924a59..8290509fa7 100755 --- a/src/test/bt_test.py +++ b/src/test/bt_test.py @@ -35,8 +35,8 @@ LINES = sys.stdin.readlines() for I in range(len(LINES)): if matches(LINES[I:], FUNCNAMES): - print "OK" + print("OK") break else: - print "BAD" + print("BAD") |