From eec61419af63688e3dc4c480246a005a43269d89 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 19 May 2010 05:37:34 -0400 Subject: [PATCH] Input codec messes with readline. Disabled in hooke.ui.commandline while I work the kinks out of flatfilt. --- hooke/ui/commandline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.26.2