Skip to content

Commit c17837c

Browse files
committedDec 12, 2016
[processing] do not replace lt and gt symbols in log window
1 parent 811a434 commit c17837c

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed
 

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,6 @@ def resetGUI(self):
139139
self.btnClose.setEnabled(True)
140140

141141
def setInfo(self, msg, error=False):
142-
msg = msg.replace("<", "&lt;").replace(">", "&gt;")
143142
if error:
144143
self.txtLog.append('<span style="color:red"><br>%s<br></span>' % msg)
145144
else:

0 commit comments

Comments
 (0)
Please sign in to comment.