We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d793f6c commit 6538ba0Copy full SHA for 6538ba0
python/plugins/processing/algs/grass7/ext/i.py
@@ -45,7 +45,7 @@ def multipleOutputDir(alg, field, basename=None):
45
commands = ["for r in $(g.list type=rast pattern='{}*'); do".format(basename)]
46
# Otherwise, export everything
47
else:
48
- commands = ["for r in $(g.list type=rast); do".format(basename)]
+ commands = ["for r in $(g.list type=rast); do"]
49
commands.append(" r.out.gdal -c -t -f input=${{r}} output={}/${{r}}.tif createopt=\"TFW=YES,COMPRESS=LZW\"".format(outputDir))
50
commands.append("done")
51
alg.commands.extend(commands)
0 commit comments