Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix #6530
  • Loading branch information
alexbruy committed Oct 18, 2012
1 parent caae7b7 commit 297c8aa
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions python/plugins/fTools/tools/doGeoprocessing.py
Expand Up @@ -492,6 +492,7 @@ def convex_hull(self, useField ):
hull = []
first = True
outID = 0
vproviderA.rewind()
for inFeat in selectionA:
atMap = inFeat.attributeMap()
idVar = atMap[ self.myParam ]
Expand Down Expand Up @@ -546,6 +547,7 @@ def convex_hull(self, useField ):
hull = []
first = True
outID = 0
vproviderA.rewind()
while vproviderA.nextFeature( inFeat ):
atMap = inFeat.attributeMap()
idVar = atMap[ self.myParam ]
Expand Down

0 comments on commit 297c8aa

Please sign in to comment.