mirror of
https://github.com/qgis/QGIS.git
synced 2025-11-22 00:14:55 -05:00
[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:
parent
54e45975fa
commit
ae097d41c7
@ -209,7 +209,7 @@ class GdalAlgorithmProvider(QgsProcessingProvider):
|
||||
self.addAlgorithm(a)
|
||||
|
||||
def supportedOutputRasterLayerExtensions(self):
|
||||
return GdalUtils.getSupportedRasterExtensions()
|
||||
return GdalUtils.getSupportedOutputRasterExtensions()
|
||||
|
||||
def supportsNonFileBasedOutput(self):
|
||||
"""
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user