From c6ec842b5c7ccd58ba1d658819bfd9666f1b8c58 Mon Sep 17 00:00:00 2001 From: Gregory Warnes Date: Tue, 23 Dec 2003 07:56:31 +0000 Subject: [PATCH] - Fix syntax error from last change. --- WSDLTools.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/WSDLTools.py b/WSDLTools.py index edf8402..ace96c1 100755 --- a/WSDLTools.py +++ b/WSDLTools.py @@ -1131,12 +1131,12 @@ def callInfoFromWSDL(port, name): except KeyError: if self.strict: raise RuntimeError( - "Recieved message not defined in the WSDL schema: %s", + "Recieved message not defined in the WSDL schema: %s" % operation.output.message) else: 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." print "Message:", operation.output.message