# HG changeset patch # User paulb # Date 1125009712 0 # Node ID 4b6cba861f1991c58f9ed5b8df3777439bf7cae6 # Parent 9e740ffc3ffd34d3fc4106436f4178fd58430d12 [project @ 2005-08-25 22:41:52 by paulb] Added a filesystem encoding argument for the calendar example. diff -r 9e740ffc3ffd -r 4b6cba861f19 tools/demo.py --- a/tools/demo.py Thu Aug 25 22:41:44 2005 +0000 +++ b/tools/demo.py Thu Aug 25 22:41:52 2005 +0000 @@ -21,6 +21,7 @@ pythonpath = "" os.environ["PYTHONPATH"] = "%s%s%s%s" % (pythonpath, base, os.pathsep, os.path.join(base, "examples", "Common")) -os.system("%s %s" % (sys.executable, os.path.join(base, "examples", "BaseHTTPRequestHandler", "DemoApp.py"))) +os.system("%s %s %s" % (sys.executable, os.path.join(base, "examples", "BaseHTTPRequestHandler", "DemoApp.py"), + " ".join(sys.argv[1:]))) # vim: tabstop=4 expandtab shiftwidth=4