diff options
author | Josh Matthews <josh@joshmatthews.net> | 2019-11-22 14:34:26 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-22 14:34:26 -0500 |
commit | 41d1ecac64c4c36e6bd232a016143692843dfa92 (patch) | |
tree | f55f43f56cb8a5b041a4f6e34dd88db730bdeb32 /etc/wpt-summarize.py | |
parent | 804780f93316b861dfc1f23f94e711307eb39b8f (diff) | |
download | servo-41d1ecac64c4c36e6bd232a016143692843dfa92.tar.gz servo-41d1ecac64c4c36e6bd232a016143692843dfa92.zip |
Fix visual indent error.
Diffstat (limited to 'etc/wpt-summarize.py')
-rw-r--r-- | etc/wpt-summarize.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/wpt-summarize.py b/etc/wpt-summarize.py index 96f55632740..14cf6c4067c 100644 --- a/etc/wpt-summarize.py +++ b/etc/wpt-summarize.py @@ -35,8 +35,8 @@ with open(sys.argv[1]) as f: thread = None else: if ("action" in entry and - entry["action"] == "test_start" and - entry["test"] == sys.argv[2]): + entry["action"] == "test_start" and + entry["test"] == sys.argv[2]): thread = entry["thread"] print(json.dumps(entry)) elif (full_search and |