diff options
author | W. Trevor King <wking@drexel.edu> | 2009-07-16 06:40:55 -0400 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2009-07-16 06:40:55 -0400 |
commit | c215f4bce94c7a0f1fbc36a5921f130db3d8512d (patch) | |
tree | 10f298055c850db64296378ea1b8646c15c7d7f9 /interfaces | |
parent | dfb7878b674e8eed1cfa55928d5464dc6fb0f085 (diff) | |
download | bugseverywhere-c215f4bce94c7a0f1fbc36a5921f130db3d8512d.tar.gz |
Now be-handle-mail successfully catches stdout/stderr.
Diffstat (limited to 'interfaces')
-rwxr-xr-x | interfaces/email/interactive/be-handle-mail | 3 |
1 files changed, 2 insertions, 1 deletions
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() |