Skip to content

Commit c2e30b3

Browse files
committedOct 6, 2014
[processing]removed debug print lines
1 parent a39315a commit c2e30b3

File tree

3 files changed

+1
-6
lines changed

3 files changed

+1
-6
lines changed
 

‎python/plugins/processing/core/GeoAlgorithm.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,6 @@ def help(self):
120120
"""
121121
name = self.commandLineName().split(':')[1].lower()
122122
filename = os.path.join(os.path.dirname(inspect.getfile(self.__class__)), 'help', name + '.rst')
123-
print filename
124123
try:
125124
html = getHtmlFromRstFile(filename)
126125
return True, html

‎python/plugins/processing/modeler/ModelerGraphicItem.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ def __init__(self, element, model):
4343
super(ModelerGraphicItem, self).__init__(None, None)
4444
self.model = model
4545
self.element = element
46-
print element.__class__
4746
if isinstance(element, ModelerParameter):
4847
icon = QtGui.QIcon(os.path.dirname(__file__)
4948
+ '/../images/input.png')

‎python/plugins/processing/modeler/ModelerParametersDialog.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def setupUi(self):
131131
if isinstance(output, (OutputRaster, OutputVector, OutputTable,
132132
OutputHTML, OutputFile, OutputDirectory)):
133133
label = QLabel(output.description + '<'
134-
+ output.__module__.split('.')[-1] + '>')
134+
+ output.__class__.__name__ + '>')
135135
item = QLineEdit()
136136
if hasattr(item, 'setPlaceholderText'):
137137
item.setPlaceholderText(ModelerParametersDialog.ENTER_NAME)
@@ -376,10 +376,7 @@ def setTableContent(self):
376376
def setComboBoxValue(self, combo, value, param):
377377
if isinstance(value, list):
378378
value = value[0]
379-
print param.name
380-
print value
381379
items = [combo.itemData(i) for i in range(combo.count())]
382-
print items
383380
try:
384381
idx = items.index(value)
385382
combo.setCurrentIndex(idx)

0 commit comments

Comments
 (0)
Please sign in to comment.