Skip to content

Commit

Permalink
fixed wrong provider reference in union algorithm
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustry authored and m-kuhn committed Nov 8, 2016
1 parent b2b67ee commit 3683c33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/Union.py
Expand Up @@ -65,7 +65,7 @@ def processAlgorithm(self, progress):
geomType = vlayerA.wkbType()
fields = vector.combineVectorFields(vlayerA, vlayerB)
writer = self.getOutputFromName(Union.OUTPUT).getVectorWriter(fields,
geomType, vproviderA.crs())
geomType, vlayerA.crs())
inFeatA = QgsFeature()
inFeatB = QgsFeature()
outFeat = QgsFeature()
Expand Down

0 comments on commit 3683c33

Please sign in to comment.