From 6778d0e2dafddd0feac6dafd91e3a6eb6b2f4493 Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Thu, 26 Jan 2017 08:44:56 +0530 Subject: 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. --- mesontest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mesontest.py b/mesontest.py index 97eb219c0..1a0c9b125 100755 --- a/mesontest.py +++ b/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() -- cgit v1.2.3