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

thgconfig: further UTF-8 improvements

paths and aliases must be converted to local when read
back from the model

Changeset 63c5fdcaee87

Parent bd4e1a860d3d

by Steve Borho

Changes to one file · Browse files at 63c5fdcaee87 Showing diff from parent bd4e1a860d3d Diff from another changeset...

 
553
554
555
556
557
 
 
558
559
560
 
553
554
555
 
 
556
557
558
559
560
@@ -553,8 +553,8 @@
  if len(self.pathdata):   refreshlist = []   for row in self.pathdata: - name = row[0] - path = row[1] + name = fromutf(row[0]) + path = fromutf(row[1])   cpath = '.'.join(['paths', name])   self.record_new_value(cpath, path, False)   refreshlist.append(name)