Skip to content

Commit 6538ba0

Browse files
committed
Fix too-many-format-args
1 parent d793f6c commit 6538ba0

File tree

1 file changed

+1
-1
lines changed
  • python/plugins/processing/algs/grass7/ext

1 file changed

+1
-1
lines changed

python/plugins/processing/algs/grass7/ext/i.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def multipleOutputDir(alg, field, basename=None):
4545
commands = ["for r in $(g.list type=rast pattern='{}*'); do".format(basename)]
4646
# Otherwise, export everything
4747
else:
48-
commands = ["for r in $(g.list type=rast); do".format(basename)]
48+
commands = ["for r in $(g.list type=rast); do"]
4949
commands.append(" r.out.gdal -c -t -f input=${{r}} output={}/${{r}}.tif createopt=\"TFW=YES,COMPRESS=LZW\"".format(outputDir))
5050
commands.append("done")
5151
alg.commands.extend(commands)

0 commit comments

Comments
 (0)