mirror of
https://github.com/qgis/QGIS.git
synced 2025-12-06 00:03:16 -05:00
Fix comment grammar
This commit is contained in:
parent
b9f6293bc7
commit
c9d0d29d69
@ -160,11 +160,11 @@ class GrassProvider(QgsProcessingProvider):
|
|||||||
return False
|
return False
|
||||||
|
|
||||||
def supportedOutputVectorLayerExtensions(self):
|
def supportedOutputVectorLayerExtensions(self):
|
||||||
# We use the same extensions than QGIS because:
|
# We use the same extensions as QGIS because:
|
||||||
# - QGIS is using OGR like GRASS
|
# - QGIS is using OGR like GRASS
|
||||||
# - There are very chances than OGR version used in GRASS is
|
# - There are very chances than OGR version used in GRASS is
|
||||||
# different from QGIS OGR version.
|
# different from QGIS OGR version.
|
||||||
return QgsVectorFileWriter.supportedFormatExtensions()
|
return super().supportedOutputVectorLayerExtensions()
|
||||||
|
|
||||||
def supportedOutputRasterLayerExtensions(self):
|
def supportedOutputRasterLayerExtensions(self):
|
||||||
return GrassUtils.getSupportedOutputRasterExtensions()
|
return GrassUtils.getSupportedOutputRasterExtensions()
|
||||||
|
|||||||
@ -644,7 +644,7 @@ class GrassUtils:
|
|||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def getSupportedOutputRasterExtensions():
|
def getSupportedOutputRasterExtensions():
|
||||||
# We use the same extensions than GDAL because:
|
# We use the same extensions as GDAL because:
|
||||||
# - GRASS is also using GDAL for raster imports.
|
# - GRASS is also using GDAL for raster imports.
|
||||||
# - Chances that GRASS is compiled with another version of
|
# - Chances that GRASS is compiled with another version of
|
||||||
# GDAL than QGIS are very limited!
|
# GDAL than QGIS are very limited!
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user