Since Britney migration was introduced in Ubuntu, automatic syncing is

always done from unstable.
This commit is contained in:
Dmitrijs Ledkovs 2013-10-22 17:04:15 +01:00
parent 0b6ba08175
commit f07c0f8ccb
2 changed files with 8 additions and 9 deletions

7
debian/changelog vendored
View File

@ -1,3 +1,10 @@
ubuntu-dev-tools (0.151) UNRELEASED; urgency=low
* Since Britney migration was introduced in Ubuntu, automatic syncing is
always done from unstable.
-- Dmitrijs Ledkovs <xnox@ubuntu.com> Tue, 22 Oct 2013 17:02:41 +0100
ubuntu-dev-tools (0.150) unstable; urgency=low
[ Brian Murray ]

View File

@ -294,15 +294,7 @@ def fetch_source_pkg(package, dist, version, component, ubuntu_release,
return DebianSourcePackage(dscfile=package, mirrors=mirrors)
if dist is None:
ubu_info = UbuntuDistroInfo()
try:
if ubu_info.is_lts(ubu_info.devel()):
dist = 'testing'
else:
dist = 'unstable'
except DistroDataOutdated, e:
Logger.warn(e)
dist = 'unstable'
dist = 'unstable'
requested_version = version
if type(version) == str: