Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.4rc3, 0.4rc4, and 0.4

hgcmd: fix UTF-8 encoding error

Changeset e8d2c1d675eb

Parent 68a01cdebb39

by TK Soh

Changes to one file · Browse files at e8d2c1d675eb Showing diff from parent 68a01cdebb39 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​hgcmd.py Stacked
 
50
51
52
53
 
54
55
56
 
50
51
52
 
53
54
55
56
@@ -50,7 +50,7 @@
  hbox = gtk.HBox()     self.status_text = gtk.Label() - self.status_text.set_text(" ".join(cmdline).replace("\n", " ")) + self.status_text.set_text(toutf(" ".join(cmdline).replace("\n", " ")))   self.status_text.set_alignment(0, 0.5)   self.status_text.set_ellipsize(pango.ELLIPSIZE_END)   hbox.pack_start(self.status_text, True, True, 3)