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

hgignore: convert internal path encoding to/from UTF-8

Changeset f56bd9a4fe87

Parent a01b7a02a2a1

by Yuki KODAMA

Changes to one file · Browse files at f56bd9a4fe87 Showing diff from parent a01b7a02a2a1 Diff from another changeset...

Change 1 of 2 Show Entire File hggtk/​hgignore.py Stacked
 
69
70
71
72
 
73
74
75
 
137
138
139
140
 
141
142
143
 
69
70
71
 
72
73
74
75
 
137
138
139
 
140
141
142
143
@@ -69,7 +69,7 @@
  if len(ignorefiles) > 1:   combo = gtk.combo_box_new_text()   for f in ignorefiles: - combo.append_text(f) + combo.append_text(hglib.toutf(f))   combo.set_active(0)   combo.connect('changed', self.fileselect)   mainvbox.pack_start(combo, False, False, 4) @@ -137,7 +137,7 @@
    def fileselect(self, combo):   'select another ignore file' - self.ignorefile = combo.get_active_text() + self.ignorefile = hglib.fromutf(combo.get_active_text())   self.refresh()     def unknown_search(self, model, column, key, iter):