remove debug line

This commit is contained in:
Alexander Bruy 2017-01-10 12:02:36 +02:00
parent 8ea5bc39b4
commit d2ff57ec38

View File

@ -179,7 +179,6 @@ class GdalUtils(object):
def escapeAndJoin(strList):
joined = ''
for s in strList:
print(s)
if s[0] != '-' and ' ' in s:
escaped = '"' + s.replace('\\', '\\\\').replace('"', '\\"') \
+ '"'