diff options
-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() |