diff options
author | W. Trevor King <wking@drexel.edu> | 2009-09-13 06:42:38 -0400 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2009-09-13 06:42:38 -0400 |
commit | bac6ce2bc8b33850479b0dac7d646cdc988e5060 (patch) | |
tree | 7b44a33a4eebb731e0c119993af05f693263d043 /interfaces | |
parent | 80dbdedeb556bbd8d7d5dd000f9f52e3a2a5c606 (diff) | |
download | bugseverywhere-bac6ce2bc8b33850479b0dac7d646cdc988e5060.tar.gz |
Fixed a few typos in be-handle-mail
Diffstat (limited to 'interfaces')
-rwxr-xr-x | interfaces/email/interactive/be-handle-mail | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/interfaces/email/interactive/be-handle-mail b/interfaces/email/interactive/be-handle-mail index 9447804..666ac18 100755 --- a/interfaces/email/interactive/be-handle-mail +++ b/interfaces/email/interactive/be-handle-mail @@ -496,7 +496,7 @@ class Message (object): if tag_type == u"new": commands = self.parse_new() elif tag_type == u"comment": - commands = self.parse_comment() + commands = self.parse_comment(value) elif tag_type == u"control": commands = self.parse_control() else: @@ -515,7 +515,7 @@ class Message (object): options) args = [u"--reporter", options[u"Reporter"]] args.append(summary) - commands = [Command(self, command, args))] + commands = [Command(self, command, args)] comment_body = self._strip_footer(comment_body) id = ID(commands[0]) if len(comment_body) > 0: @@ -534,9 +534,9 @@ class Message (object): args = [id, value] commands.append(Command(self, command, args)) return commands - def parse_comment(self): + def parse_comment(self, bug_uuid): command = u"comment" - bug_id = value + bug_id = bug_uuid author = self.author_addr() alt_id = self.message_id() body,mime_type = list(self._get_bodies_and_mime_types())[0] |