From: <fea...@us...> - 2007-03-03 20:33:06
|
Revision: 1362 http://svn.sourceforge.net/pywebsvcs/?rev=1362&view=rev Author: feanor420 Date: 2007-03-03 12:33:05 -0800 (Sat, 03 Mar 2007) Log Message: ----------- Minor fix with the usage of urllib.quote. safe is not a keyword argument. Modified Paths: -------------- trunk/zsi/ZSI/TC.py Modified: trunk/zsi/ZSI/TC.py =================================================================== --- trunk/zsi/ZSI/TC.py 2007-02-21 21:14:10 UTC (rev 1361) +++ trunk/zsi/ZSI/TC.py 2007-03-03 20:33:05 UTC (rev 1362) @@ -741,8 +741,9 @@ def get_formatted_content(self, pyobj): '''typecode data --> text ''' + u = urlencode(pyobj, self.reserved) return String.get_formatted_content(self, - urlencode(pyobj, safe=self.reserved)) + u) class QName(String): This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |