mesontest: Don't add '.' at the end of some prints

Makes it difficult to copy the filename/datetime by double-clicking
since that includes the '.' at the end.
pull/1334/head
Nirbheek Chauhan 8 years ago committed by Jussi Pakkanen
parent d9a4b367b4
commit 6778d0e2da
  1. 4
      mesontest.py

@ -416,7 +416,7 @@ TIMEOUT: %4d
jsonlogfile = open(jsonlogfilename, 'w')
logfile = open(logfilename, 'w')
logfile.write('Log of Meson test suite run on %s.\n\n'
logfile.write('Log of Meson test suite run on %s\n\n'
% datetime.datetime.now().isoformat())
return logfile, logfilename, jsonlogfile, jsonlogfilename
@ -484,7 +484,7 @@ TIMEOUT: %4d
self.print_collected_logs()
if logfilename:
print('Full log written to %s.' % logfilename)
print('Full log written to %s' % logfilename)
finally:
if jsonlogfile:
jsonlogfile.close()

Loading…
Cancel
Save