diff options
Diffstat (limited to 'testxml/testxml.py')
-rwxr-xr-x | testxml/testxml.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/testxml/testxml.py b/testxml/testxml.py index ad8601f..8c201df 100755 --- a/testxml/testxml.py +++ b/testxml/testxml.py @@ -1778,14 +1778,14 @@ def testLayer(file, node, name, width, height, layer, tiles): except: compression = "" if encoding == "base64": - if compression != "gzip": - if compression != "zlib": - showMsgFile(file, "invalid compression " + compression + \ - " in layer: " + name, True) - continue - else: - showMsgFile(file, "not supported compression by old clients " \ - + compression + " in layer: " + name, False) +# if compression != "gzip": +# if compression != "zlib": +# showMsgFile(file, "invalid compression " + compression + \ +# " in layer: " + name, True) +# continue +# else: +# showMsgFile(file, "not supported compression by old clients " \ +# + compression + " in layer: " + name, False) binData = data.childNodes[0].data.strip() binData = binData.decode('base64') if compression == "gzip": |