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

hggtk/history: fix UTF-8 encoding error in tags column

Changeset b2dcc5a0ccf0

Parent 8a56ab916e0a

by TK Soh

Changes to one file · Browse files at b2dcc5a0ccf0 Showing diff from parent 8a56ab916e0a Diff from another changeset...

 
106
107
108
109
 
110
111
112
 
106
107
108
 
109
110
111
112
@@ -106,7 +106,7 @@
  summary = summary.split('\n')[0]   summary = gobject.markup_escape_text(toutf(summary))   node = self.repo.lookup(revid) - tags = ', '.join(self.repo.nodetags(node)) + tags = toutf(', '.join(self.repo.nodetags(node)))     if '<' in ctx.user():   author = toutf(self.author_re.sub('', ctx.user()).strip(' '))