Author: Alexander Schremmer <alex AT alexanderweb DOT de> Branch: Changeset: r311:a40d3b116f07 Date: 2015-02-23 15:12 +0100 http://bitbucket.org/pypy/benchmarks/changeset/a40d3b116f07/
Log: Fix webapp.py to adhere to command line arguments. diff --git a/multithread/wsgi/webapp.py b/multithread/wsgi/webapp.py --- a/multithread/wsgi/webapp.py +++ b/multithread/wsgi/webapp.py @@ -54,5 +54,4 @@ if __name__ == '__main__': - init(sys.argv[1]) - run() + run(*init(*sys.argv[1:])) _______________________________________________ pypy-commit mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-commit
