Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.4rc1, 0.4rc2, and 0.4rc3

hggtk/history: fix summary line display problem on revision tree

when summary lines contains multi-byte characters.
SF Bug# 1914550: problems with german umlaut characters

Changeset 65a7ba2dffc3

Parent 20d428b65e03

by TK Soh

Changes to one file · Browse files at 65a7ba2dffc3 Showing diff from parent 20d428b65e03 Diff from another changeset...

 
85
86
87
88
 
89
90
91
 
85
86
87
 
88
89
90
91
@@ -85,7 +85,7 @@
  ctx = self.repo.changectx(revid)     summary = ctx.description().replace('\0', '') - summary = summary.split('\n')[0] + summary = unicode(summary.split('\n')[0], 'latin-1', 'replace')   summary = gobject.markup_escape_text(summary)   node = self.repo.lookup(revid)   tags = ', '.join(self.repo.nodetags(node))