Skip to content

Commit

Permalink
[processing] Fix GDAL supported output raster extensions
Browse files Browse the repository at this point in the history
Fix GdalAlgorithmProvider supportedOutputRasterLayerExtensions(self) in order to correctly return GdalUtils.getSupportedOutputRasterExtensions() instead of GdalUtils.getSupportedRasterExtensions()
  • Loading branch information
agiudiceandrea committed Feb 25, 2021
1 parent 54e4597 commit ae097d4
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -209,7 +209,7 @@ def loadAlgorithms(self):
self.addAlgorithm(a)

def supportedOutputRasterLayerExtensions(self):
return GdalUtils.getSupportedRasterExtensions()
return GdalUtils.getSupportedOutputRasterExtensions()

def supportsNonFileBasedOutput(self):
"""
Expand Down

0 comments on commit ae097d4

Please sign in to comment.