mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-13 08:01:09 +00:00
Yielding the result of super()_source_urls() / _binary_urls() yields the generator object itself which generates the list of URLs - not the URLs which would be returned from this generator. Instead use yield from which forwards the yield onto the generator object itself. Fixes LP: #1938659 Signed-off-by: Alex Murray <alex.murray@canonical.com>