]> git.pld-linux.org Git - packages/python-SOAP.git/commitdiff
- small patch to try load from url in different way auto/ac/python-SOAP-0_11_6-2
authorundefine <undefine@pld-linux.org>
Tue, 9 Nov 2004 11:21:25 +0000 (11:21 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    python-SOAP-urltry.patch -> 1.1

python-SOAP-urltry.patch [new file with mode: 0644]

diff --git a/python-SOAP-urltry.patch b/python-SOAP-urltry.patch
new file mode 100644 (file)
index 0000000..68cc263
--- /dev/null
@@ -0,0 +1,14 @@
+--- SOAPpy-0.11.6/SOAPpy/WSDL.py~      2004-01-31 04:20:06.000000000 +0000
++++ SOAPpy-0.11.6/SOAPpy/WSDL.py       2004-11-09 11:17:48.927693480 +0000
+@@ -63,6 +63,11 @@
+             except (IOError, OSError): pass
+         if self.wsdl is None:
++            try:
++                self.wsdl = reader.loadFromURL(wsdlsource)
++            except (IOError, OSError): pass
++
++        if self.wsdl is None:
+             import StringIO
+             self.wsdl = reader.loadFromString(str(wsdlsource))
+             #print 'string'
This page took 0.035059 seconds and 4 git commands to generate.