From 3feda231b86a0b2b6df28f55cb62d1bf477a54ac Mon Sep 17 00:00:00 2001 From: Nyall Dawson Date: Tue, 12 Jan 2021 10:45:17 +1000 Subject: [PATCH] Update comment --- python/plugins/processing/algs/grass7/Grass7Algorithm.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/plugins/processing/algs/grass7/Grass7Algorithm.py b/python/plugins/processing/algs/grass7/Grass7Algorithm.py index 97b81fca1d8..d9717a785d8 100644 --- a/python/plugins/processing/algs/grass7/Grass7Algorithm.py +++ b/python/plugins/processing/algs/grass7/Grass7Algorithm.py @@ -1030,7 +1030,7 @@ class Grass7Algorithm(QgsProcessingAlgorithm): def setSessionProjectionFromProject(self): """ Set the projection from the project. - We creates a PROJ4 definition which is transmitted to Grass + We create a WKT definition which is transmitted to Grass """ if not Grass7Utils.projectionSet and iface: self.setSessionProjection(iface.mapCanvas().mapSettings().destinationCrs()) @@ -1038,7 +1038,7 @@ class Grass7Algorithm(QgsProcessingAlgorithm): def setSessionProjectionFromLayer(self, layer): """ Set the projection from a QgsVectorLayer. - We creates a PROJ4 definition which is transmitted to Grass + We create a WKT definition which is transmitted to Grass """ if not Grass7Utils.projectionSet: self.setSessionProjection(layer.crs())