Skip to content

Commit ef8383a

Browse files
committedMay 21, 2014
[processing] remove unnecessary print sentences
1 parent 889d2a1 commit ef8383a

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed
 

‎python/plugins/processing/gui/AlgorithmExecutionDialog.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,6 @@ def __init__(self, alg, mainWidget):
122122
if html:
123123
self.webView.setHtml(html)
124124
elif url:
125-
print url
126125
self.webView.load(url)
127126
except:
128127
self.webView.setHtml('<h2>Could not open help file :-( </h2>')

‎python/plugins/processing/gui/Help2Html.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ def getHtmlFromRstFile(rst):
5252
for exp, replace in exps:
5353
p = re.compile(exp)
5454
s = p.sub(replace, s)
55-
print s
5655
return s
5756

5857
def getHtmlFromHelpFile(alg, helpFile):

0 commit comments

Comments
 (0)
Please sign in to comment.