diff --git a/WSDLTools.py b/WSDLTools.py index 4faa5fe..b167a83 100755 --- a/WSDLTools.py +++ b/WSDLTools.py @@ -454,7 +454,6 @@ class PortType(Element): self.name = DOM.getAttr(element, 'name') self.documentation = GetDocumentation(element) self.targetNamespace = DOM.getAttr(element, 'targetNamespace') - print "PORTYPE TNS: ", self.targetNamespace if DOM.hasAttr(element, 'ResourceProperties', WSR.PROPERTIES): rpref = DOM.getAttr(element, 'ResourceProperties', WSR.PROPERTIES) diff --git a/XMLSchema.py b/XMLSchema.py index 4f203f5..8402c78 100755 --- a/XMLSchema.py +++ b/XMLSchema.py @@ -1167,9 +1167,6 @@ class XMLSchema(XMLSchemaComponent): self.setAttributes(node) contents = self.getContents(node) - print "PARENT: ", self._parent() - print "\ttns: ", self.getTargetNamespace() - #if self.attributes['namespace'] == self._parent().attributes['targetNamespace']: if self.attributes['namespace'] == self.getTargetNamespace(): raise SchemaError, 'namespace of schema and import match'