Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

thgconfig: convert title encoding to UTF-8

Changeset b971a09d608b

Parent 3486826ecad4

by Yuki KODAMA

Changes to one file · Browse files at b971a09d608b Showing diff from parent 3486826ecad4 Diff from another changeset...

 
504
505
506
507
 
508
509
510
 
504
505
506
 
507
508
509
510
@@ -504,7 +504,7 @@
  repo = hg.repository(ui.ui(), self.root)   name = repo.ui.config('web', 'name') or os.path.basename(repo.root)   self.rcpath = [os.sep.join([repo.root, '.hg', 'hgrc'])] - self.set_title(_('TortoiseHg Configure Repository - ') + name) + self.set_title(_('TortoiseHg Configure Repository - ') + hglib.toutf(name))   gtklib.set_tortoise_icon(self, 'settings_repo.ico')   else:   self.rcpath = util.user_rcpath()