Browse Source

- Fix syntax error from last change.

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

+ 3
- 3
WSDLTools.py View File

@@ -1131,12 +1131,12 @@ def callInfoFromWSDL(port, name):
except KeyError: except KeyError:
if self.strict: if self.strict:
raise RuntimeError( raise RuntimeError(
"Recieved message not defined in the WSDL schema: %s",
"Recieved message not defined in the WSDL schema: %s" %
operation.output.message) operation.output.message)
else: else:
message = wsdl.addMessage(operation.output.message) message = wsdl.addMessage(operation.output.message)
print "Warning:",
"Recieved message not defined in the WSDL schema.",
print "Warning:", \
"Recieved message not defined in the WSDL schema.", \
"Adding it." "Adding it."
print "Message:", operation.output.message print "Message:", operation.output.message


Loading…
Cancel
Save