From a315c51ba548d1ae7e4d3170327e9cc248836bdd Mon Sep 17 00:00:00 2001 From: Monte Goode Date: Thu, 13 May 2004 17:15:52 +0000 Subject: [PATCH] added XSD_LIST to SCHEMA because it's absence broke wsdl2python. --- Namespaces.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Namespaces.py b/Namespaces.py index 591f4e8..cc05b1e 100755 --- a/Namespaces.py +++ b/Namespaces.py @@ -14,9 +14,11 @@ except: XSD1 = "http://www.w3.org/1999/XMLSchema" XSD2 = "http://www.w3.org/2000/10/XMLSchema" XSD3 = "http://www.w3.org/2001/XMLSchema" + XSD_LIST = [ XSD1, XSD2, XSD3 ] XSI1 = "http://www.w3.org/1999/XMLSchema-instance" XSI2 = "http://www.w3.org/2000/10/XMLSchema-instance" XSI3 = "http://www.w3.org/2001/XMLSchema-instance" + XSI_LIST = [ XSI1, XSI2, XSI3 ] BASE = XSD3 class WSDL: