Browse Source

- Fix problem when WSDL.Proxy was passed WSDL in a string or other


			
			main
		
Gregory Warnes 21 years ago
parent
commit
f0f30cade1
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      WSDLTools.py

+ 1
- 1
WSDLTools.py View File

@@ -27,7 +27,7 @@ class WSDLReader:
wsdl = WSDL()
if name:
wsdl.location = name
else:
elif hasattr(file, 'name'):
wsdl.location = file.name
wsdl.load(document)
return wsdl


Loading…
Cancel
Save