1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-02 09:47:23 +03:00

selftest/format-subunit-json: remove useless py2 print

Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Douglas Bagnall 2019-03-08 21:06:26 +13:00 committed by Andrew Bartlett
parent abf2e7c4a5
commit ed562c0480

View File

@ -19,7 +19,6 @@ def json_formatter(src_f, dest_f):
for line in src_f:
line = line.strip()
print >>sys.stderr, line
if line[:14] == 'elapsed-time: ':
name, time = line[14:].rsplit(':', 1)
results[name] = float(time)