diff --git a/tests/test_fslsub.py b/tests/test_fslsub.py index 5de9bcf9e3a743a5600fa1bf204ac8e91dca76ae..e2fb9ebcc934e93a2b03a160cfbe36f156754013 100644 --- a/tests/test_fslsub.py +++ b/tests/test_fslsub.py @@ -50,8 +50,8 @@ env['PYTHONPATH'] = op.join(op.dirname(fsl.__file__), '..') cmd = op.basename(args[0]) jobid = random.randint(1, 9999) -with open(f'{{cmd}}.o{{jobid}}', 'w') as stdout, \ - open(f'{{cmd}}.e{{jobid}}', 'w') as stderr: +with open('{{}}.o{{}}'.format(cmd, jobid), 'w') as stdout, \ + open('{{}}.e{{}}'.format(cmd, jobid), 'w') as stderr: result = sp.run(args, stdout=stdout, stderr=stderr, env=env) print(str(jobid))