* requestsync:

Add "done" as last email command to stop parsing the email body for
  further email commands (lp: #372555)
This commit is contained in:
Michael Bienia 2009-07-02 20:01:34 +02:00
parent 638950f184
commit e6c5a0fe26
2 changed files with 5 additions and 2 deletions

5
debian/changelog vendored
View File

@ -5,6 +5,9 @@ ubuntu-dev-tools (0.75) UNRELEASED; urgency=low
- Use the LP API for retrying or rescoring builds.
* requestsync:
- Fix check for sponsorship when a new package should get synced.
- Add "done" as last email command when emailing the sync request
to stop parsing of the email body for further email commands
(lp: #372555)
[ Jonathan Davies ]
* update-maintainer:
@ -51,7 +54,7 @@ ubuntu-dev-tools (0.75) UNRELEASED; urgency=low
* requestsync: We need to use the output from madison, not just throw it
away.
-- Michael Bienia <geser@ubuntu.com> Sat, 27 Jun 2009 11:56:08 +0200
-- Michael Bienia <geser@ubuntu.com> Thu, 02 Jul 2009 19:55:55 +0200
ubuntu-dev-tools (0.74) karmic; urgency=low

View File

@ -226,7 +226,7 @@ def mail_bug(source_package, subscribe, status, bugtitle, bugtext, keyid = None)
mailbody += ' affects ubuntu/%s\n' % source_package
else:
mailbody += ' affects ubuntu\n'
mailbody = mailbody + ' status %s\n importance wishlist\n subscribe %s\n\n%s' % (status, subscribe, bugtext)
mailbody = mailbody + ' status %s\n importance wishlist\n subscribe %s\n done\n\n%s' % (status, subscribe, bugtext)
# prepare sign_command
sign_command = 'gpg'