From: <wa...@us...> - 2008-05-14 21:29:17
|
Revision: 1450 http://pywebsvcs.svn.sourceforge.net/pywebsvcs/?rev=1450&view=rev Author: warnes Date: 2008-05-14 14:29:24 -0700 (Wed, 14 May 2008) Log Message: ----------- Fix bug when Config.specialargs=0, submitted by Marc Jauvin, bug #1230666 Modified Paths: -------------- trunk/SOAPpy/SOAPpy/Server.py Modified: trunk/SOAPpy/SOAPpy/Server.py =================================================================== --- trunk/SOAPpy/SOAPpy/Server.py 2008-05-14 21:26:53 UTC (rev 1449) +++ trunk/SOAPpy/SOAPpy/Server.py 2008-05-14 21:29:24 UTC (rev 1450) @@ -248,10 +248,11 @@ # It is enabled by default. To disable, set # Config.specialArgs to False. + + ordered_args = {} + named_args = {} + if Config.specialArgs: - - ordered_args = {} - named_args = {} for (k,v) in kw.items(): This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |