SVN: r25411 - trunk/quixote/demo
David Binger <dbinger-fVcApmY9cLvQ3/1i3zOLAti2O/[email protected]> Thu, 21 Oct 2004 13:52:27 -0400
| Newsgroups | gmane.comp.web.quixote.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: dbinger
Date: 2004-10-21 13:48:51 -0400 (Thu, 21 Oct 2004)
New Revision: 25411
Modified:
trunk/quixote/demo/demo_scgi.py
Log:
Move keyword before *args.
Modified: trunk/quixote/demo/demo_scgi.py
===================================================================
--- trunk/quixote/demo/demo_scgi.py 2004-10-21 15:53:07 UTC (rev 25410)
+++ trunk/quixote/demo/demo_scgi.py 2004-10-21 17:48:51 UTC (rev 25411)
@@ -15,9 +15,8 @@
class DemoPublisher(Publisher):
def __init__(self, *args):
- Publisher.__init__(self, *args, display_exceptions='plain')
+ Publisher.__init__(self, display_exceptions='plain', *args)
-
class DemoHandler(QuixoteHandler):
publisher_class = DemoPublisher
root_namespace = "quixote.demo"