diff options
author | J2P <jjp5023@gmail.com> | 2018-10-19 21:44:18 +0900 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-10-19 09:07:55 -0400 |
commit | 198fa31ec150b069dca39b94b2049d3ff65213e9 (patch) | |
tree | ed7f7ee3f4a6cd79dc9e83991bf6c4ccd4c99bbe /tools/http_benchmark.py | |
parent | 142e532910a534080de297de5be88a502163fc4e (diff) |
Fix a typo in http_benchmark.py
Diffstat (limited to 'tools/http_benchmark.py')
-rwxr-xr-x | tools/http_benchmark.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/http_benchmark.py b/tools/http_benchmark.py index b1be79eda..62647f629 100755 --- a/tools/http_benchmark.py +++ b/tools/http_benchmark.py @@ -50,6 +50,6 @@ def run(server_cmd): if __name__ == '__main__': if len(sys.argv) < 2: - print "Usage ./tools/tcp_http_benchmark.py out/debug/deno" + print "Usage ./tools/http_benchmark.py out/debug/deno" sys.exit(1) deno_http_benchmark(sys.argv[1]) |