3
0
mirror of https://git.launchpad.net/ubuntu-dev-tools synced 2025-03-14 08:31:13 +00:00

Fall back to master mirrors

This commit is contained in:
Stefano Rivera 2010-12-31 19:56:31 +02:00
parent 182cab66c4
commit c52f0965e7

@ -192,6 +192,9 @@ class SourcePackage(object):
yield os.path.join(os.path.dirname(self._dsc_source), name)
for mirror in self.mirrors:
yield self._mirror_url(mirror, name)
for mirror in self.masters:
if mirror not in self.mirrors:
yield self._mirror_url(mirror, name)
yield self._lp_url(name)
def pull_dsc(self):