Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.0.5, 2.1, and 2.1.1

stable logcolumns: convert column names from unicode (fixes #756)

Already fixed on default branch as part of a9011b36e99e.

Changeset e1d224ef7f83

Parent c9bc1c7192c2

by Phil Currier

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

 
29
30
31
32
 
 
33
34
35
 
29
30
31
 
32
33
34
35
36
@@ -29,7 +29,8 @@
  s = QSettings()   cols = s.value('workbench/columns').toStringList()   if cols: - self.curcolumns = [c for c in cols if c in all] + self.curcolumns = [hglib.fromunicode(c) + for c in cols if c in all]   else:   self.curcolumns = all   self.disabled = [c for c in all if c not in self.curcolumns]