Commit fa06ff9d authored by Guido van Rossum's avatar Guido van Rossum

From visual inspection, it looks like the run_server() signature has

changed and the hotshot invocation wasn't changed along.  Untested.
parent 0f089971
......@@ -113,7 +113,7 @@ else:
try:
if PROFILE:
p = hotshot.Profile("stats.s.%d" % os.getpid())
p.runctx("run_server(storage, addr, rd, wr)",
p.runctx("run_server(addr, rd, wr, storage_name, args)",
globals(), locals())
p.close()
else:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment