summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Turney <jon.turney@dronecode.org.uk>2018-11-18 14:32:37 +0000
committerJussi Pakkanen <jpakkane@gmail.com>2018-11-19 21:07:37 +0200
commit4c4e3c8600a30a9ab908c291799dba9b14bfe8fd (patch)
tree3c3b4c0293e059604ac0af8b8f7391e550f34cf4
parenta33acd31dad99be9124022d6293bacaa9d2045fb (diff)
downloadmeson-4c4e3c8600a30a9ab908c291799dba9b14bfe8fd.tar.gz
Fix flake8 whitespace reports
$ flake8 ./mesonbuild/mtest.py:524:9: E122 continuation line missing indentation or outdented per PEP8, this line requires more indentation to distinguish it from the following line
-rw-r--r--mesonbuild/mtest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/mtest.py b/mesonbuild/mtest.py
index a5a362647..1f9e7f8c3 100644
--- a/mesonbuild/mtest.py
+++ b/mesonbuild/mtest.py
@@ -521,7 +521,7 @@ Unexpected Pass: %4d
Skipped: %4d
Timeout: %4d
''' % (self.success_count, self.expectedfail_count, self.fail_count,
- self.unexpectedpass_count, self.skip_count, self.timeout_count)
+ self.unexpectedpass_count, self.skip_count, self.timeout_count)
print(msg)
if self.logfile:
self.logfile.write(msg)