From: W. Trevor King Date: Thu, 16 Jul 2009 10:40:55 +0000 (-0400) Subject: Now be-handle-mail successfully catches stdout/stderr. X-Git-Tag: 1.0.0~62^2~46^2~63 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c215f4bce94c7a0f1fbc36a5921f130db3d8512d;p=be.git Now be-handle-mail successfully catches stdout/stderr. --- 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()