Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.7, 0.7.1, and 0.7.2

histselect: fix UTF-8 encoding error

Changeset da27d08979a5

Parent 88e98adbc4b2

by TK Soh

Changes to one file · Browse files at da27d08979a5 Showing diff from parent 88e98adbc4b2 Diff from another changeset...

 
142
143
144
145
 
146
147
148
 
142
143
144
 
145
146
147
148
@@ -142,7 +142,7 @@
  name, value = re.split(':\s+', x, 1)   if name not in cs:   cs[name] = [] - cs[name].append(value) + cs[name].append(hglib.toutf(value))   if cs:   histlist.append(cs)