We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0502265 commit 9a05558Copy full SHA for 9a05558
python/plugins/processing/algs/qgis/Buffer.py
@@ -83,7 +83,7 @@ def buffering(progress, writer, distance, field, useField, layer, dissolve,
83
value = distance
84
inGeom = QgsGeometry(inFeat.geometry())
85
if inGeom.isGeosEmpty() or not inGeom.isGeosValid():
86
- ProcessingLog.addToLog( ProcessingLog.LOG_WARNING, 'Feature {} has empty or invalid geometry. Skipping...'.format(inFeat.id()))
+ ProcessingLog.addToLog(ProcessingLog.LOG_WARNING, 'Feature {} has empty or invalid geometry. Skipping...'.format(inFeat.id()))
87
continue
88
89
outGeom = inGeom.buffer(float(value), segments)
0 commit comments