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

update: make title UTF8 clean

Changeset 92fb38b18ace

Parent ddfbe8d912e7

by Steve Borho

Changes to one file · Browse files at 92fb38b18ace Showing diff from parent ddfbe8d912e7 Diff from another changeset...

Change 1 of 2 Show Entire File hggtk/​update.py Stacked
 
14
15
16
17
 
18
19
20
 
34
35
36
37
 
38
39
40
 
14
15
16
 
17
18
19
20
 
34
35
36
 
37
38
39
40
@@ -14,7 +14,7 @@
 from mercurial import util, hg, ui  from mercurial.node import *  from shlib import shell_notify, set_tortoise_icon -from hglib import rootpath, RepoError +from hglib import rootpath, toutf, RepoError    class UpdateDialog(gtk.Window):   """ Dialog to update Mercurial repo """ @@ -34,7 +34,7 @@
  return None     # set dialog title - title = "hg update - %s" % self.cwd + title = "hg update - %s" % toutf(self.cwd)   self.set_title(title)     self._create()