aboutsummaryrefslogtreecommitdiff
path: root/mesontest.py
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2017-01-26 08:44:56 +0530
committerJussi Pakkanen <jpakkane@gmail.com>2017-01-26 21:56:51 +0200
commit6778d0e2dafddd0feac6dafd91e3a6eb6b2f4493 (patch)
treee502364e55ca8d08debfee6858ab7a5c168d2bdd /mesontest.py
parentd9a4b367b476f96a2b0bdeb9b636767ed9b0037c (diff)
downloadmeson-6778d0e2dafddd0feac6dafd91e3a6eb6b2f4493.zip
meson-6778d0e2dafddd0feac6dafd91e3a6eb6b2f4493.tar.gz
meson-6778d0e2dafddd0feac6dafd91e3a6eb6b2f4493.tar.bz2
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.
Diffstat (limited to 'mesontest.py')
-rwxr-xr-xmesontest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesontest.py b/mesontest.py
index 97eb219..1a0c9b1 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()