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

hgcmd: fix error in hglib.toutf call

Changeset a0702e54ba5b

Parent e30153694940

by TK Soh

Changes to one file · Browse files at a0702e54ba5b Showing diff from parent e30153694940 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​hgcmd.py Stacked
 
104
105
106
107
 
108
109
110
 
104
105
106
 
107
108
109
110
@@ -104,7 +104,7 @@
  gobject.timeout_add(10, self.process_queue)     def write(self, msg, append=True): - msg = toutf(msg, 'iso-8859-1') + msg = toutf(msg)   if append:   enditer = self.textbuffer.get_end_iter()   self.textbuffer.insert(enditer, msg)