Browse Source

----------------------------------------------------------------------

Modified Files:
 	XMLSchema.py -- Shouldn't check attributes for WSDL definition
           since it's legal to specify <any> attribute in <definition>

 ----------------------------------------------------------------------
main
Joshua Boverhof 20 years ago
parent
commit
5e135800f9
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      XMLSchema.py

+ 2
- 1
XMLSchema.py View File

@@ -559,7 +559,8 @@ class XMLSchemaComponent(XMLBase, MarkerInterface):
else:
raise SchemaError, 'attribute %s declared multiple times' %value

self.__checkAttributes()
if not isinstance(self, WSDLToolsAdapter):
self.__checkAttributes()
self.__setAttributeDefaults()

#set QNames


Loading…
Cancel
Save