Revision: 67389c4e7cc9
Author:   Pekka Klärck
Date:     Mon May 28 22:41:03 2012
Log:      removed dead code killed by revision b8a9f1bede73
http://code.google.com/p/robotframework/source/detail?r=67389c4e7cc9

Modified:
 /src/robot/utils/htmlutils.py

=======================================
--- /src/robot/utils/htmlutils.py       Mon May 28 05:21:01 2012
+++ /src/robot/utils/htmlutils.py       Mon May 28 22:41:03 2012
@@ -25,10 +25,6 @@
 def html_escape(text):
     return _format_url(_html_escape(text))

-def _ride_formatting(text):
-    return html_format(text).replace('\t', ' '*8) \
-                .replace('  ', ' &nbsp;').replace('\n', '<br>\n')
-
 def _html_escape(text):
     for name, value in _html_escapes:
         text = text.replace(name, value)

Reply via email to