SVN: r20480 - trunk/quixote/demo
Andrew Kuchling <akuchlin-fVcApmY9cLvQ3/1i3zOLAti2O/[email protected]> Tue, 28 Jan 2003 08:16:02 -0500
| Newsgroups | gmane.comp.web.quixote.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: akuchlin
Date: 2003-01-28 08:16:01 -0500 (Tue, 28 Jan 2003)
New Revision: 20480
Modified:
trunk/quixote/demo/demo_scgi.py
trunk/quixote/demo/demo_scgi.sh
Log:
Fix demo_scgi.py to actually work (reported by David M. Cooke)
Make demo_scgi.{sh,py} executable
Modified: trunk/quixote/demo/demo_scgi.py
==============================================================================
--- trunk/quixote/demo/demo_scgi.py (original)
+++ trunk/quixote/demo/demo_scgi.py 2003-01-28 08:16:02.000000000 -0500
@@ -15,7 +15,7 @@
class DemoPublisher(Publisher):
def __init__(self, *args, **kwargs):
- Publisher.__init__(*args, **kwargs)
+ Publisher.__init__(self, *args, **kwargs)
# (Optional step) Read a configuration file
self.read_config("demo.conf")
@@ -25,6 +25,7 @@
class DemoHandler(QuixoteHandler):
+ publisher_class = DemoPublisher
root_namespace = "quixote.demo"
prefix = "/qdemo"