Skip to content

Commit

Permalink
remove some debug output from fTools
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Dec 10, 2011
1 parent 2f73a5d commit 07bb506
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions python/plugins/fTools/tools/doGeoprocessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -1045,9 +1045,7 @@ def intersect( self ):
int_geom = QgsGeometry( int_com.difference( int_sym ) )
try:
outFeat.setGeometry( int_geom )
print outFeat.isValid()
outFeat.setAttributeMap( ftools_utils.combineVectorAttributes( atMapA, atMapB ) )
print outFeat.isValid()
writer.addFeature( outFeat )
except:
FEATURE_EXCEPT = False
Expand All @@ -1056,7 +1054,6 @@ def intersect( self ):
GEOS_EXCEPT = False
break
del writer
print crs_match
return GEOS_EXCEPT, FEATURE_EXCEPT, crs_match, None

def union( self ):
Expand Down Expand Up @@ -1217,7 +1214,6 @@ def union( self ):
# intersects, but the geometry doesn't
outFeat.setGeometry( diff_geom )
outFeat.setAttributeMap( atMap )
print geom.wkbType()
writer.addFeature( outFeat )
except Exception, err:
add = False
Expand Down

0 comments on commit 07bb506

Please sign in to comment.