Skip to content

Commit 1f4bf4e

Browse files
committed
Fix indentation
1 parent 511b881 commit 1f4bf4e

File tree

1 file changed

+1
-1
lines changed
  • python/plugins/processing/algs/qgis

1 file changed

+1
-1
lines changed

python/plugins/processing/algs/qgis/Clip.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def processAlgorithm(self, progress):
119119
if new_geom.wkbType() == QGis.WKBUnknown or QgsWKBTypes.flatType(new_geom.geometry().wkbType()) == QgsWKBTypes.GeometryCollection:
120120
int_com = in_feat.constGeometry().combine(new_geom)
121121
int_sym = in_feat.constGeometry().symDifference(new_geom)
122-
if not int_com or not int_sym:
122+
if not int_com or not int_sym:
123123
ProcessingLog.addToLog(ProcessingLog.LOG_ERROR,
124124
self.tr('GEOS geoprocessing error: One or more '
125125
'input features have invalid geometry.'))

0 commit comments

Comments
 (0)