Skip to content

Commit 07bb506

Browse files
committedDec 10, 2011
remove some debug output from fTools
1 parent 2f73a5d commit 07bb506

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed
 

‎python/plugins/fTools/tools/doGeoprocessing.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1045,9 +1045,7 @@ def intersect( self ):
10451045
int_geom = QgsGeometry( int_com.difference( int_sym ) )
10461046
try:
10471047
outFeat.setGeometry( int_geom )
1048-
print outFeat.isValid()
10491048
outFeat.setAttributeMap( ftools_utils.combineVectorAttributes( atMapA, atMapB ) )
1050-
print outFeat.isValid()
10511049
writer.addFeature( outFeat )
10521050
except:
10531051
FEATURE_EXCEPT = False
@@ -1056,7 +1054,6 @@ def intersect( self ):
10561054
GEOS_EXCEPT = False
10571055
break
10581056
del writer
1059-
print crs_match
10601057
return GEOS_EXCEPT, FEATURE_EXCEPT, crs_match, None
10611058

10621059
def union( self ):
@@ -1217,7 +1214,6 @@ def union( self ):
12171214
# intersects, but the geometry doesn't
12181215
outFeat.setGeometry( diff_geom )
12191216
outFeat.setAttributeMap( atMap )
1220-
print geom.wkbType()
12211217
writer.addFeature( outFeat )
12221218
except Exception, err:
12231219
add = False

0 commit comments

Comments
 (0)
Please sign in to comment.