mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-05-11 00:41:28 +00:00
sponsor-patch: Don't fall over bugs targetted at the development release
(LP: #936014)
This commit is contained in:
parent
f29e729852
commit
e30a6e51a7
2
debian/changelog
vendored
2
debian/changelog
vendored
@ -15,6 +15,8 @@ ubuntu-dev-tools (0.144) UNRELEASED; urgency=low
|
|||||||
- Avoid duplicate Reverse-Build-Deps when sources build binaries of the
|
- Avoid duplicate Reverse-Build-Deps when sources build binaries of the
|
||||||
same name.
|
same name.
|
||||||
- Explain that backports aren't to fix bugs.
|
- Explain that backports aren't to fix bugs.
|
||||||
|
* sponsor-patch: Don't fall over bugs targetted at the development release
|
||||||
|
(LP: #936014)
|
||||||
|
|
||||||
[ Benjamin Drung ]
|
[ Benjamin Drung ]
|
||||||
* seeded-in-ubuntu: State in error message that it takes a source package.
|
* seeded-in-ubuntu: State in error message that it takes a source package.
|
||||||
|
@ -202,6 +202,9 @@ def get_open_ubuntu_bug_task(launchpad, bug, branch=None):
|
|||||||
tasks = [task for task in ubuntu_tasks
|
tasks = [task for task in ubuntu_tasks
|
||||||
if task.get_series() == branch[2]
|
if task.get_series() == branch[2]
|
||||||
and task.package == branch[3]]
|
and task.package == branch[3]]
|
||||||
|
if len(tasks) > 1:
|
||||||
|
# A bug targetted to the development series?
|
||||||
|
tasks = [task for task in tasks if task.series is not None]
|
||||||
assert len(tasks) == 1
|
assert len(tasks) == 1
|
||||||
task = tasks[0]
|
task = tasks[0]
|
||||||
elif len(ubuntu_tasks) > 1:
|
elif len(ubuntu_tasks) > 1:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user