changeset 4060:ba7b8dfac7d5

2way compare: fixed missing "<" escape code
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 27 Jun 2013 23:53:57 +0200
parents 31ca78c45705
children 77d8917d1d57
files rhodecode/controllers/files.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/rhodecode/controllers/files.py	Thu Jun 27 23:50:14 2013 +0200
+++ b/rhodecode/controllers/files.py	Thu Jun 27 23:53:57 2013 +0200
@@ -666,7 +666,7 @@
             '"': "\u0022",
             "'": "\u0027",
             ">": "\u003e",
-            "<": "\<",
+            "<": "\u003c",
             '\\': "\u005c",
             '\n': '\\n'
         }