Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

update: encode branch name to unicode

Changeset 7f1bf844c03e

Parent 413ab4d8102c

by Yuki KODAMA

Changes to one file · Browse files at 7f1bf844c03e Showing diff from parent 413ab4d8102c Diff from another changeset...

 
55
56
57
58
 
59
60
61
 
55
56
57
 
58
59
60
61
@@ -55,7 +55,7 @@
  combo.addItem(hglib.tounicode(rev))   combo.setCurrentIndex(0)   for name in hglib.getlivebranch(self.repo): - combo.addItem(name) + combo.addItem(hglib.tounicode(name))     tags = list(self.repo.tags())   tags.sort()