Skip to content

Commit 889d2a1

Browse files
committed
[processing] code cleaning. Removed debug sentences
1 parent 202d331 commit 889d2a1

File tree

5 files changed

+3
-6
lines changed

5 files changed

+3
-6
lines changed

python/plugins/processing/algs/otb/OTBAlgorithm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ def processAlgorithm(self, progress):
227227
else :
228228
indexSubdataset = -1
229229
else :
230-
print "Error : no match of ", dataset, "$ in gdalinfo " + data
230+
#print "Error : no match of ", dataset, "$ in gdalinfo " + data
231231
indexSubdataset = -1
232232

233233

python/plugins/processing/algs/qgis/ftools/MeanCoords.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,6 @@ def processAlgorithm(self, progress):
6565
weightField = self.getParameterValue(self.WEIGHT)
6666
uniqueField = self.getParameterValue(self.UID)
6767

68-
print weightField, uniqueField
69-
7068
if weightField is None:
7169
weightIndex = -1
7270
else:

python/plugins/processing/algs/qgis/ftools/SinglePartsToMultiparts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ def singleToMultiGeom(self, wkbType):
127127
else:
128128
return QGis.WKBUnknown
129129
except Exception, err:
130-
print unicode(err)
130+
pass
131131

132132
def extractAsMulti(self, geom):
133133
if geom.type() == QGis.Point:

python/plugins/processing/algs/qgis/ftools/SpatialJoin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ def singleToMultiGeom(self, wkbType):
260260
else:
261261
return QGis.WKBUnknown
262262
except Exception, err:
263-
print unicode(err)
263+
pass
264264

265265
def extractAsMulti(self, geom):
266266
if geom.type() == QGis.Point:

python/plugins/processing/algs/qgis/mmqgisx/MMQGISXAlgorithms.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,6 @@ def processAlgorithm(self, progress):
424424

425425
crsId = self.getParameterValue(self.CRS)
426426
self.crs = QgsCoordinateReferenceSystem(crsId)
427-
print self.crs.authid()
428427

429428
if hspacing <= 0 or vspacing <= 0:
430429
raise GeoAlgorithmExecutionException('Invalid grid spacing: '

0 commit comments

Comments
 (0)