Skip to content

Commit 4ffdef4

Browse files
committed
[processing] fix MMQGIS Extract by attribute (fix #9768)
1 parent 5e5abdb commit 4ffdef4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/plugins/processing/algs/mmqgisx/MMQGISXAlgorithms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1146,7 +1146,7 @@ def processAlgorithm(self, progress):
11461146

11471147
features = vector.features(layer)
11481148
featureCount = len(features)
1149-
output = self.getOutputFromName(self.OUTPUT)
1149+
output = self.getOutputFromName(self.RESULT)
11501150
writer = output.getVectorWriter(fields,
11511151
provider.geometryType(), layer.crs())
11521152
for (i, feat) in enumerate(features):

0 commit comments

Comments
 (0)