Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Quotes also need to be escaped in gdal argument values
- Loading branch information
Showing
with
1 addition
and
1 deletion.
-
+1
−1
python/plugins/processing/algs/gdal/GdalUtils.py
|
@@ -248,7 +248,7 @@ def getFormatShortNameFromFilename(filename): |
|
|
|
|
|
@staticmethod |
|
|
def escapeAndJoin(strList): |
|
|
escChars = [' ', '&', '(', ')'] |
|
|
escChars = [' ', '&', '(', ')', '"'] |
|
|
joined = '' |
|
|
for s in strList: |
|
|
if not isinstance(s, str): |
|
|