From: W. Trevor King Date: Wed, 19 May 2010 09:37:34 +0000 (-0400) Subject: Input codec messes with readline. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=eec61419af63688e3dc4c480246a005a43269d89;p=hooke.git Input codec messes with readline. Disabled in hooke.ui.commandline while I work the kinks out of flatfilt. --- diff --git a/hooke/ui/commandline.py b/hooke/ui/commandline.py index e8db0af..2df4b14 100644 --- a/hooke/ui/commandline.py +++ b/hooke/ui/commandline.py @@ -370,7 +370,7 @@ class CommandLine (UserInterface): cmd = HookeCmd(self, commands, inqueue=ui_to_command_queue, outqueue=command_to_ui_queue) - cmd.stdin = codecs.getreader(get_input_encoding())(cmd.stdin) + #cmd.stdin = codecs.getreader(get_input_encoding())(cmd.stdin) cmd.stdout = codecs.getwriter(get_output_encoding())(cmd.stdout) return cmd