|
From: <wa...@us...> - 2008-05-16 22:02:01
|
Revision: 1466
http://pywebsvcs.svn.sourceforge.net/pywebsvcs/?rev=1466&view=rev
Author: warnes
Date: 2008-05-16 15:02:05 -0700 (Fri, 16 May 2008)
Log Message:
-----------
Remove unecessary (problematic?) quotes around encoding name
Modified Paths:
--------------
trunk/SOAPpy/SOAPpy/Client.py
Modified: trunk/SOAPpy/SOAPpy/Client.py
===================================================================
--- trunk/SOAPpy/SOAPpy/Client.py 2008-05-16 22:01:02 UTC (rev 1465)
+++ trunk/SOAPpy/SOAPpy/Client.py 2008-05-16 22:02:05 UTC (rev 1466)
@@ -180,7 +180,7 @@
r.putheader("User-agent", SOAPUserAgent())
t = 'text/xml';
if encoding != None:
- t += '; charset="%s"' % encoding
+ t += '; charset=%s' % encoding
r.putheader("Content-type", t)
r.putheader("Content-length", str(len(data)))
self.__addcookies(r);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|