aboutsummaryrefslogtreecommitdiff
path: root/mesontest.py
diff options
context:
space:
mode:
authorIgor Gnatenko <i.gnatenko.brain@gmail.com>2016-12-31 20:25:09 +0100
committerJussi Pakkanen <jpakkane@gmail.com>2017-01-01 12:02:05 -0500
commit969dc7e995fcc19418bf4c6f66ac97b5a4ff2150 (patch)
tree3b7b4451539aa1625c2e6d9caaefe6383d4147e0 /mesontest.py
parent116da33cddeb1793329ddefcc0e6db74679931f2 (diff)
downloadmeson-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-xmesontest.py3
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: