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
pull/4534/head
Jon Turney 6 years ago committed by Jussi Pakkanen
parent a33acd31da
commit 4c4e3c8600
  1. 2
      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)

Loading…
Cancel
Save