diff options
author | W. Trevor King <wking@drexel.edu> | 2009-07-18 10:03:48 -0400 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2009-07-18 10:03:48 -0400 |
commit | ab27f54efd8c7f8fd095c64a136a2e88852e1e88 (patch) | |
tree | e859669981813eff8bfe2995f34bd356f68ad794 /interfaces/email | |
parent | c11db47e9708ee53771598205fa82437bcbbe957 (diff) | |
download | bugseverywhere-ab27f54efd8c7f8fd095c64a136a2e88852e1e88.tar.gz |
Corrected author_addr -> info["author_addr"] in be-handle-mail
Diffstat (limited to 'interfaces/email')
-rwxr-xr-x | interfaces/email/interactive/be-handle-mail | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/interfaces/email/interactive/be-handle-mail b/interfaces/email/interactive/be-handle-mail index 7d165be..013ea4e 100755 --- a/interfaces/email/interactive/be-handle-mail +++ b/interfaces/email/interactive/be-handle-mail @@ -134,11 +134,11 @@ def run_message(msg_text): body,mime_type = get_body_type(msg) if command == "new": if "--reporter" not in args and "-r" not in args: - command_args = ["--reporter", author_addr] + command_args + command_args = ["--reporter", info["author_addr"]]+command_args body = body.strip().split("\n", 1)[0] # only take first line elif command == "comment": if "--author" not in args and "-a" not in args: - command_args = ["--author", author_addr] + command_args + command_args = ["--author", info["author_addr"]] + command_args if "--content-type" not in args and "-c" not in args: command_args = ["--content-type", mime_type] + command_args if "--alt-id" not in args: |