diff options
author | W. Trevor King <wking@drexel.edu> | 2009-07-27 09:06:27 -0400 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2009-07-27 09:06:27 -0400 |
commit | df1c1cb1b2a33452ee4fa197c5145f07302a741a (patch) | |
tree | ad57da81d4344bb08ead8012cbae8b679e1b9106 /interfaces/email/interactive/be-handle-mail | |
parent | 92a6b40fd078fb069e987f6f45f967224df44e0d (diff) | |
download | bugseverywhere-df1c1cb1b2a33452ee4fa197c5145f07302a741a.tar.gz |
Tweaked the output text for modified bugs in libbe.diff and be-handle-mail.
Diffstat (limited to 'interfaces/email/interactive/be-handle-mail')
-rwxr-xr-x | interfaces/email/interactive/be-handle-mail | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/interfaces/email/interactive/be-handle-mail b/interfaces/email/interactive/be-handle-mail index 90f5c28..55f04b0 100755 --- a/interfaces/email/interactive/be-handle-mail +++ b/interfaces/email/interactive/be-handle-mail @@ -285,8 +285,12 @@ class DiffTree (libbe.diff.DiffTree): class Diff (libbe.diff.Diff): def bug_add_string(self, bug): return bug.string(show_comments=True) - def comment_summary_string(self, comment): + def _comment_summary_string(self, comment): return comment.string() + def comment_add_string(self, comment): + return self._comment_summary_string(comment) + def comment_rem_string(self, comment): + return self._comment_summary_string(comment) class Message (object): def __init__(self, email_text=None, disable_parsing=False): |