diff options
Diffstat (limited to 'test cases/python/2 extmodule/blaster.py.in')
| -rwxr-xr-x | test cases/python/2 extmodule/blaster.py.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/python/2 extmodule/blaster.py.in b/test cases/python/2 extmodule/blaster.py.in index b690b4092..c93026f4f 100755 --- a/test cases/python/2 extmodule/blaster.py.in +++ b/test cases/python/2 extmodule/blaster.py.in @@ -8,4 +8,4 @@ if not isinstance(result, int): raise SystemExit('Returned result not an integer.') if result != 1: - raise SystemExit(f'Returned result {result} is not 1.') + raise SystemExit('Returned result {} is not 1.'.format(result)) |
