Skip to content

Commit

Permalink
[processing] do not replace lt and gt symbols in log window
Browse files Browse the repository at this point in the history
  • Loading branch information
volaya committed Dec 12, 2016
1 parent 811a434 commit c17837c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion python/plugins/processing/gui/AlgorithmDialogBase.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ def resetGUI(self):
self.btnClose.setEnabled(True)

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

0 comments on commit c17837c

Please sign in to comment.