aboutsummaryrefslogtreecommitdiff
path: root/mesontest.py
diff options
context:
space:
mode:
authorIgor Gnatenko <i.gnatenko.brain@gmail.com>2016-12-31 20:19:38 +0100
committerJussi Pakkanen <jpakkane@gmail.com>2017-01-01 12:02:05 -0500
commit116da33cddeb1793329ddefcc0e6db74679931f2 (patch)
treee373c9cf07b74ac5a8d7c97212377860cb60ca3b /mesontest.py
parentea570bcb6704629a4a503548865a8dc19c872a39 (diff)
downloadmeson-116da33cddeb1793329ddefcc0e6db74679931f2.zip
meson-116da33cddeb1793329ddefcc0e6db74679931f2.tar.gz
meson-116da33cddeb1793329ddefcc0e6db74679931f2.tar.bz2
style: fix E128 violations
E128: continuation line under-indented for visual indent Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
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 88d0527..49a5278 100755
--- a/mesontest.py
+++ b/mesontest.py
@@ -349,7 +349,7 @@ class TestHarness:
jsonlogfile = open(jsonlogfilename, 'w')
logfile = open(logfilename, 'w')
logfile.write('Log of Meson test suite run on %s.\n\n' %
- datetime.datetime.now().isoformat())
+ datetime.datetime.now().isoformat())
for i in range(self.options.repeat):
for i, test in enumerate(filtered_tests):
@@ -367,7 +367,7 @@ class TestHarness:
res = self.run_single_test(wrap, test)
if not self.options.verbose:
self.print_stats(numlen, filtered_tests, visible_name, res, i,
- logfile, jsonlogfile)
+ logfile, jsonlogfile)
else:
f = executor.submit(self.run_single_test, wrap, test)
if not self.options.verbose: