Skip to content

Commit

Permalink
Quotes also need to be escaped in gdal argument values
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Feb 8, 2021
1 parent fdb53fe commit 988ad72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/gdal/GdalUtils.py
Expand Up @@ -248,7 +248,7 @@ def getFormatShortNameFromFilename(filename):

@staticmethod
def escapeAndJoin(strList):
escChars = [' ', '&', '(', ')']
escChars = [' ', '&', '(', ')', '"']
joined = ''
for s in strList:
if not isinstance(s, str):
Expand Down

0 comments on commit 988ad72

Please sign in to comment.