diff options
author | Igor Gnatenko <i.gnatenko.brain@gmail.com> | 2016-12-31 20:25:09 +0100 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-01-01 12:02:05 -0500 |
commit | 969dc7e995fcc19418bf4c6f66ac97b5a4ff2150 (patch) | |
tree | 3b7b4451539aa1625c2e6d9caaefe6383d4147e0 /mesontest.py | |
parent | 116da33cddeb1793329ddefcc0e6db74679931f2 (diff) | |
download | meson-969dc7e995fcc19418bf4c6f66ac97b5a4ff2150.zip meson-969dc7e995fcc19418bf4c6f66ac97b5a4ff2150.tar.gz meson-969dc7e995fcc19418bf4c6f66ac97b5a4ff2150.tar.bz2 |
style: fix E124 violations
E124: closing bracket does not match visual indentation
Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
Diffstat (limited to 'mesontest.py')
-rwxr-xr-x | mesontest.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mesontest.py b/mesontest.py index 49a5278..ecf1b41 100755 --- a/mesontest.py +++ b/mesontest.py @@ -131,8 +131,7 @@ def write_json_log(jsonlogfile, test_name, result): 'result': result.res, 'duration': result.duration, 'returncode': result.returncode, - 'command': result.cmd, - } + 'command': result.cmd} if isinstance(result.env, dict): jresult['env'] = result.env else: |