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

hggtk/changeset: fix traceback caused by utf-8 encoded commit messages

Changeset 0c0b7bbff2dd

Parent 65a7ba2dffc3

by TK Soh

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

 
124
125
126
 
127
128
129
 
134
135
136
 
137
138
139
 
124
125
126
127
128
129
130
 
135
136
137
138
139
140
141
@@ -124,6 +124,7 @@
  for p in parents:   pctx = self.repo.changectx(p)   summary = pctx.description().splitlines()[0] + summary = unicode(summary, 'latin-1', 'replace')   change = str(p) + ':' + short(self.repo.changelog.node(p))   title = 'parent:'   title += ' ' * (12 - len(title)) @@ -134,6 +135,7 @@
  for n in self.repo.changelog.children(ctx.node()):   cctx = self.repo.changectx(n)   summary = cctx.description().splitlines()[0] + summary = unicode(summary, 'latin-1', 'replace')   childrev = self.repo.changelog.rev(n)   change = str(childrev) + ':' + short(n)   title = 'child:'