mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-13 08:01:09 +00:00
archive.py: Evaluate the filter() fixing syncpackage.
This commit is contained in:
parent
e54a13743c
commit
90cb51becb
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
|||||||
|
ubuntu-dev-tools (0.179) UNRELEASED; urgency=medium
|
||||||
|
|
||||||
|
* archive.py: Evaluate the filter() fixing syncpackage.
|
||||||
|
|
||||||
|
-- Stefano Rivera <stefanor@debian.org> Fri, 29 Jan 2021 22:17:42 -0700
|
||||||
|
|
||||||
ubuntu-dev-tools (0.178) unstable; urgency=medium
|
ubuntu-dev-tools (0.178) unstable; urgency=medium
|
||||||
|
|
||||||
[ Dan Streetman ]
|
[ Dan Streetman ]
|
||||||
|
@ -167,7 +167,7 @@ class SourcePackage(object):
|
|||||||
UDTConfig.defaults.get('%s_%s' %
|
UDTConfig.defaults.get('%s_%s' %
|
||||||
(self.distribution.upper(),
|
(self.distribution.upper(),
|
||||||
suffix)))
|
suffix)))
|
||||||
self.masters = filter(None, masters)
|
self.masters = list(filter(None, masters))
|
||||||
|
|
||||||
# if a dsc was specified, pull it to get the source/version info
|
# if a dsc was specified, pull it to get the source/version info
|
||||||
if self._dsc_source:
|
if self._dsc_source:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user