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

settings: fix encoding of settings file name

Changeset 060ab65a7e71

Parent 8204bf5b5250

by Yuya Nishihara

Changes to one file · Browse files at 060ab65a7e71 Showing diff from parent 8204bf5b5250 Diff from another changeset...

 
666
667
668
669
 
670
671
672
 
666
667
668
 
669
670
671
672
@@ -666,7 +666,7 @@
  self.ini = self.loadIniFile(self.rcpath)   self.readonly = not (hasattr(self.ini, 'write') and os.access(self.fn, os.W_OK))   self.stack.setDisabled(self.readonly) - self.fnedit.setText(self.fn) + self.fnedit.setText(hglib.tounicode(self.fn))   for info, widgets in self.pages.values():   for row, (label, cpath, values, tooltip) in enumerate(info):   curvalue = self.readCPath(cpath)