summaryrefslogtreecommitdiff
path: root/scripts/clean_c_api_trace.py
diff options
context:
space:
mode:
authorGuanzhong Chen <gzchen@google.com>2019-08-13 13:12:58 -0700
committerGitHub <noreply@github.com>2019-08-13 13:12:58 -0700
commit1b8c19a021c09aa4024fe79753ab922cd5762ec0 (patch)
treec6ab45c6a08a0cca1a17b282840e9c5b82388f4e /scripts/clean_c_api_trace.py
parente2f49d8227f2b71e4dede5cf4074bb9f65e3d77f (diff)
downloadbinaryen-1b8c19a021c09aa4024fe79753ab922cd5762ec0.tar.gz
binaryen-1b8c19a021c09aa4024fe79753ab922cd5762ec0.tar.bz2
binaryen-1b8c19a021c09aa4024fe79753ab922cd5762ec0.zip
Upgrade flake8 and run it on python 3 (#2297)
Diffstat (limited to 'scripts/clean_c_api_trace.py')
-rwxr-xr-xscripts/clean_c_api_trace.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/clean_c_api_trace.py b/scripts/clean_c_api_trace.py
index 1f8062f2d..e2bfa30ab 100755
--- a/scripts/clean_c_api_trace.py
+++ b/scripts/clean_c_api_trace.py
@@ -34,4 +34,4 @@ if start >= 0:
assert end > 0
trace = trace[:start] + trace[end + 2:]
- print trace
+ print(trace)