[ANN] GUI log, status, and commit
Brad Schick
schickb at gmail.com
Sat Aug 18 23:07:05 CDT 2007
Hideya 'OhaC' OHASHI wrote:
>> gtools couldn't work well with LANG=ja_JP.EUC-JP
>> This patch can solve this issue.
>>
Thanks, I've applied that to my repo and it will be in future updates. I
also made the following change after your patch was applied.
diff -r 2c1fa2eb6cf0 hgext/gtools.py
--- a/hgext/gtools.py Sun Aug 19 10:44:49 2007 +0900
+++ b/hgext/gtools.py Sat Aug 18 20:58:01 2007 -0700
@@ -699,6 +699,7 @@ class GLog(GDialog):
break;
for line in lines_iter:
+ line = util.fromlocal(line)
buffer.insert(buff_iter, line + '\n')
self.details_text.set_buffer(buffer)
More information about the Mercurial
mailing list