summaryrefslogtreecommitdiff
path: root/selftest/filter-subunit
diff options
context:
space:
mode:
authorDouglas Bagnall <douglas.bagnall@catalyst.net.nz>2019-03-09 13:27:16 +1300
committerAndrew Bartlett <abartlet@samba.org>2019-03-12 00:42:18 +0000
commit4a231855dd4df8c428bb8e63fd2be2bf1a4c8000 (patch)
tree406448c60d3d5fb56a346463b8f9eede67716034 /selftest/filter-subunit
parented562c048022416a89aa55be3d8203db5a32b340 (diff)
downloadsamba-4a231855dd4df8c428bb8e63fd2be2bf1a4c8000.tar.gz
selftest/filter-subunit: use py3 print
Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'selftest/filter-subunit')
-rwxr-xr-xselftest/filter-subunit6
1 files changed, 3 insertions, 3 deletions
diff --git a/selftest/filter-subunit b/selftest/filter-subunit
index 4340439dd3b..d67fbaceb51 100755
--- a/selftest/filter-subunit
+++ b/selftest/filter-subunit
@@ -61,9 +61,9 @@ if opts.perf_test_output:
if getattr(opts, bad_opt):
bad_options.append(bad_opt)
if bad_options:
- print >>sys.stderr, ("--perf-test-output is incompatible with --%s" %
- (', --'.join(x.replace('_', '-')
- for x in bad_options)))
+ print("--perf-test-output is incompatible with --%s" %
+ (', --'.join(x.replace('_', '-') for x in bad_options)),
+ file=sys.stderr)
sys.exit(1)
if opts.expected_failures: