Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
followup 570972b
  • Loading branch information
jef-n committed Feb 21, 2021
1 parent 570972b commit 61b6cc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/gdal/merge.py
Expand Up @@ -127,7 +127,7 @@ def icon(self):
return QIcon(os.path.join(pluginPath, 'images', 'gdaltools', 'merge.png'))

def commandName(self):
return 'gdal_merge.bat' is isWindows() else 'gdal_merge.py'
return 'gdal_merge.bat' if isWindows() else 'gdal_merge.py'

def getConsoleCommands(self, parameters, context, feedback, executing=True):
out = self.parameterAsOutputLayer(parameters, self.OUTPUT, context)
Expand Down

0 comments on commit 61b6cc2

Please sign in to comment.