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.
This commit is contained in:
Nirbheek Chauhan 2017-01-26 08:44:56 +05:30 committed by Jussi Pakkanen
parent d9a4b367b4
commit 6778d0e2da
1 changed files with 2 additions and 2 deletions

View File

@ -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()