diff options
author | W. Trevor King <wking@drexel.edu> | 2009-11-30 06:29:48 -0500 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2009-11-30 06:29:48 -0500 |
commit | c4a9b465fb512fdfa2d43ece22c786b021d8c2ce (patch) | |
tree | c92629e416c42c813f45ee6ca69f5197873e27cf /interfaces | |
parent | f3de7e1a6d07b5488fd3c9e01caba53216e612d2 (diff) | |
parent | 13784e6067b652e4fe08e488fdc4baabc37f24ef (diff) | |
download | bugseverywhere-c4a9b465fb512fdfa2d43ece22c786b021d8c2ce.tar.gz |
Merged completed be.email-bugs branch.
Highlights:
* import-xml now works as advertized in its longhelp string
* new methods Bug.merge() and Comment.merge()
* comment.list_to_root() is now Bug.add_comments()
* BugDir.list_uuids() is now BugDir.uuids()
* Bug.from_xml() now imports comments :p
* test.py uses unittest.TestSuite 'suite' in becommands, if present.
Diffstat (limited to 'interfaces')
-rwxr-xr-x | interfaces/email/interactive/be-handle-mail | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/interfaces/email/interactive/be-handle-mail b/interfaces/email/interactive/be-handle-mail index e0e3490..3b321cf 100755 --- a/interfaces/email/interactive/be-handle-mail +++ b/interfaces/email/interactive/be-handle-mail @@ -598,7 +598,7 @@ class Message (object): raise InvalidEmail(self, u"Emails to %s must have MIME type 'text/xml', not '%s'." % (SUBJECT_TAG_XML, mime_type)) - args = [u"-"] + args = [u"--add-only", u"-"] commands = [Command(self, command, args, stdin=body)] return commands def run(self): |