From c215f4bce94c7a0f1fbc36a5921f130db3d8512d Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Thu, 16 Jul 2009 06:40:55 -0400 Subject: Now be-handle-mail successfully catches stdout/stderr. --- interfaces/email/interactive/be-handle-mail | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/interfaces/email/interactive/be-handle-mail b/interfaces/email/interactive/be-handle-mail index ebf522a..0eb3cce 100755 --- a/interfaces/email/interactive/be-handle-mail +++ b/interfaces/email/interactive/be-handle-mail @@ -119,7 +119,8 @@ def run_message(msg_text): sys.stderr = new_stderr # run the command os.chdir(BE_DIR) - ret = libbe.cmdutil.execute(command, command_args) + ret = libbe.cmdutil.execute(command, command_args, + manipulate_encodings=False) # restore stdout and stderr sys.stdout.flush() sys.stderr.flush() -- cgit