1.1 --- a/tools/demo.py Thu Aug 25 22:41:44 2005 +0000
1.2 +++ b/tools/demo.py Thu Aug 25 22:41:52 2005 +0000
1.3 @@ -21,6 +21,7 @@
1.4 pythonpath = ""
1.5
1.6 os.environ["PYTHONPATH"] = "%s%s%s%s" % (pythonpath, base, os.pathsep, os.path.join(base, "examples", "Common"))
1.7 -os.system("%s %s" % (sys.executable, os.path.join(base, "examples", "BaseHTTPRequestHandler", "DemoApp.py")))
1.8 +os.system("%s %s %s" % (sys.executable, os.path.join(base, "examples", "BaseHTTPRequestHandler", "DemoApp.py"),
1.9 + " ".join(sys.argv[1:])))
1.10
1.11 # vim: tabstop=4 expandtab shiftwidth=4