Skip to content

Commit

Permalink
fix ftools union
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Apr 4, 2013
1 parent 5f5cafc commit db1d6ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/fTools/tools/doGeoprocessing.py
Expand Up @@ -1101,7 +1101,7 @@ def union( self ):
nElement = 0

fitA = vproviderA.getFeatures()
while fit.nextFeature( inFeatA ):
while fitA.nextFeature( inFeatA ):
self.emit( SIGNAL( "runStatus(PyQt_PyObject)" ), nElement )
nElement += 1
found = False
Expand Down Expand Up @@ -1198,7 +1198,7 @@ def union( self ):
except Exception, err:
FEATURE_EXCEPT = False

length = len( vproviderA.fields().values() )
length = len( vproviderA.fields() )

fitB = vproviderB.getFeatures()
while fitB.nextFeature( inFeatA ):
Expand Down

0 comments on commit db1d6ab

Please sign in to comment.