mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-16 01:21:07 +00:00
Merge the requestsync fix from Iain Lane (~laney/ubuntu-dev-tools/dev).
This commit is contained in:
parent
3d28d36c9f
commit
dca732d355
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,8 +1,10 @@
|
|||||||
ubuntu-dev-tools (0.32) UNRELEASED; urgency=low
|
ubuntu-dev-tools (0.32) UNRELEASED; urgency=low
|
||||||
|
|
||||||
* [empty changelog for new bzr commits]
|
[ Iain Lane ]
|
||||||
|
* requestsync: Fix bug where requestsync would fall over when requesting
|
||||||
|
sync for package with no local changes.
|
||||||
|
|
||||||
-- Kees Cook <kees@ubuntu.com> Fri, 13 Jun 2008 11:55:24 -0700
|
-- Siegfried-Angel Gevatter Pujals (RainCT) <rainct@ubuntu.com> Thu, 03 Jul 2008 19:24:46 +0200
|
||||||
|
|
||||||
ubuntu-dev-tools (0.31) intrepid; urgency=low
|
ubuntu-dev-tools (0.31) intrepid; urgency=low
|
||||||
|
|
||||||
|
@ -419,21 +419,21 @@ if __name__ == '__main__':
|
|||||||
report += debian_changelog(srcpkg, debiancomponent, base_ver) + '\n'
|
report += debian_changelog(srcpkg, debiancomponent, base_ver) + '\n'
|
||||||
|
|
||||||
if need_interaction:
|
if need_interaction:
|
||||||
(_, bug_text) = edit_report(title, report, changes_required=True)
|
(_, report) = edit_report(title, report, changes_required=True)
|
||||||
|
|
||||||
# Post sync request using Launchpad interface:
|
# Post sync request using Launchpad interface:
|
||||||
srcpkg = not newsource and srcpkg or None
|
srcpkg = not newsource and srcpkg or None
|
||||||
if use_lp_bugs:
|
if use_lp_bugs:
|
||||||
# Map status to the values expected by lp-bugs
|
# Map status to the values expected by lp-bugs
|
||||||
mapping = {'new': 'New', 'confirmed': 'Confirmed'}
|
mapping = {'new': 'New', 'confirmed': 'Confirmed'}
|
||||||
if post_bug(srcpkg, subscribe, mapping[status], title, bug_text):
|
if post_bug(srcpkg, subscribe, mapping[status], title, report):
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
# Abort on error:
|
# Abort on error:
|
||||||
print 'Something went wrong. No sync request filed.'
|
print 'Something went wrong. No sync request filed.'
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
# Mail sync request:
|
# Mail sync request:
|
||||||
if mail_bug(srcpkg, subscribe, status, title, bug_text, keyid):
|
if mail_bug(srcpkg, subscribe, status, title, report, keyid):
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
|
|
||||||
print 'Something went wrong. No sync request filed.'
|
print 'Something went wrong. No sync request filed.'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user