diff options
author | Ben Smith <binji@chromium.org> | 2020-03-13 10:10:26 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-13 10:10:26 -0700 |
commit | a5994b2f94586063f7cce021e537f2cda82f3ba0 (patch) | |
tree | d63581e66497bfe7449807a1a7debb4dfc55efb8 /scripts/gen-emscripten-exported-json.py | |
parent | e0b5f0f33f84e23869f8e511cdd583f45097af9a (diff) | |
download | wabt-a5994b2f94586063f7cce021e537f2cda82f3ba0.tar.gz wabt-a5994b2f94586063f7cce021e537f2cda82f3ba0.tar.bz2 wabt-a5994b2f94586063f7cce021e537f2cda82f3ba0.zip |
Fix flake8 failures (#1358)
Diffstat (limited to 'scripts/gen-emscripten-exported-json.py')
-rwxr-xr-x | scripts/gen-emscripten-exported-json.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/gen-emscripten-exported-json.py b/scripts/gen-emscripten-exported-json.py index 3eaca462..f072a939 100755 --- a/scripts/gen-emscripten-exported-json.py +++ b/scripts/gen-emscripten-exported-json.py @@ -97,7 +97,7 @@ def main(args): with open(options.output, 'w') as out_file: out_file.write(out_data) else: - print out_data + print(out_data) return 0 |