diff options
author | Jon Turney <jon.turney@dronecode.org.uk> | 2018-11-18 14:32:37 +0000 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-11-19 21:07:37 +0200 |
commit | 4c4e3c8600a30a9ab908c291799dba9b14bfe8fd (patch) | |
tree | 3c3b4c0293e059604ac0af8b8f7391e550f34cf4 | |
parent | a33acd31dad99be9124022d6293bacaa9d2045fb (diff) | |
download | meson-4c4e3c8600a30a9ab908c291799dba9b14bfe8fd.zip meson-4c4e3c8600a30a9ab908c291799dba9b14bfe8fd.tar.gz meson-4c4e3c8600a30a9ab908c291799dba9b14bfe8fd.tar.bz2 |
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.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/mtest.py b/mesonbuild/mtest.py index a5a3626..1f9e7f8 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) |