hgcmd: fix error in hglib.toutf call
authorTK Soh <teekaysoh@yahoo.com>
Sat, 26 Apr 2008 11:10:43 +0100
changeset 1149 a0702e54ba5b
parent 1148 e30153694940
child 1150 ab58d6495d47
hgcmd: fix error in hglib.toutf call
hggtk/hgcmd.py
--- a/hggtk/hgcmd.py	Sat Apr 26 11:08:46 2008 +0100
+++ b/hggtk/hgcmd.py	Sat Apr 26 11:10:43 2008 +0100
@@ -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)