Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

visdiff: convert list strings of TreeView to UTF-8

Changeset 6eddc3f81d6a

Parent 81bac394eb0e

by Yuki KODAMA

Changes to one file · Browse files at 6eddc3f81d6a Showing diff from parent 81bac394eb0e Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​visdiff.py Stacked
 
193
194
195
196
 
197
198
 
199
200
 
201
202
203
 
193
194
195
 
196
197
 
198
199
 
200
201
202
203
@@ -193,11 +193,11 @@
  self.dirs = (dir1, dir2, dir2root, tmproot)     for m in modified: - model.append(['M', m]) + model.append(['M', hglib.toutf(m)])   for a in added: - model.append(['A', a]) + model.append(['A', hglib.toutf(a)])   for r in removed: - model.append(['R', r]) + model.append(['R', hglib.toutf(r)])   if len(model) == 1 and self.singlecheck.get_active():   self.launch(*model[0])