[processing] Fix GDAL supported output raster extensions

Fix GdalAlgorithmProvider supportedOutputRasterLayerExtensions(self) in order to correctly return GdalUtils.getSupportedOutputRasterExtensions() instead of GdalUtils.getSupportedRasterExtensions()
This commit is contained in:
Andrea Giudiceandrea 2021-02-25 07:18:41 +01:00 committed by GitHub
parent 54e45975fa
commit ae097d41c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -209,7 +209,7 @@ class GdalAlgorithmProvider(QgsProcessingProvider):
self.addAlgorithm(a)
def supportedOutputRasterLayerExtensions(self):
return GdalUtils.getSupportedRasterExtensions()
return GdalUtils.getSupportedOutputRasterExtensions()
def supportsNonFileBasedOutput(self):
"""