Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

revdisplay: fix display of username "André"

Changeset 20dcaf64eb67

Parent 561211c10f60

by Adrian Buehlmann

Changes to one file · Browse files at 20dcaf64eb67 Showing diff from parent 561211c10f60 Diff from another changeset...

 
23
24
25
26
 
27
28
29
 
224
225
226
227
 
228
229
230
 
23
24
25
 
26
27
28
29
 
224
225
226
 
227
228
229
230
@@ -23,7 +23,7 @@
 connect = QtCore.QObject.connect  SIGNAL = QtCore.SIGNAL   -from tortoisehg.util.util import format_desc, xml_escape +from tortoisehg.util.util import format_desc, xml_escape, tounicode  from tortoisehg.util import hglib    from tortoisehg.hgqt.config import HgConfig @@ -224,7 +224,7 @@
  ctx = self.ctx   buf = '<table width=100%>\n'   - user = xml_escape(unicode(ctx.user(), 'utf-8', 'replace')) + user = xml_escape(tounicode(ctx.user()))   buf += ('<tr>' + labelfmt + '<td>%s</td></tr>\n') % (   labelwidth, 'Author', user)