requestsync: We need to use the output from madison, not just throw it

away.
This commit is contained in:
Iain Lane 2009-06-15 19:58:41 +01:00
parent 5d0eb21a8f
commit ba0d0664a8
2 changed files with 7 additions and 2 deletions

6
debian/changelog vendored
View File

@ -45,7 +45,11 @@ ubuntu-dev-tools (0.75) UNRELEASED; urgency=low
* lp-set-dup: Add missing % needed for string substitution. Thanks to * lp-set-dup: Add missing % needed for string substitution. Thanks to
Robert Ancell for the fix. Robert Ancell for the fix.
-- Michael Bienia <geser@ubuntu.com> Tue, 09 Jun 2009 10:31:03 +0200 [ Iain Lane ]
* requestsync: We need to use the output from madison, not just throw it
away.
-- Iain Lane <laney@ubuntu.com> Mon, 15 Jun 2009 19:17:51 +0100
ubuntu-dev-tools (0.74) karmic; urgency=low ubuntu-dev-tools (0.74) karmic; urgency=low

View File

@ -134,7 +134,8 @@ def cur_version_component(sourcepkg, release):
def cur_deb_version(sourcepkg, distro): def cur_deb_version(sourcepkg, distro):
'''Return the current debian version of a package in a Debian distro.''' '''Return the current debian version of a package in a Debian distro.'''
if not ubuntutools.packages.checkIsInDebian(sourcepkg, distro): out = ubuntutools.packages.checkIsInDebian(sourcepkg, distro)
if not out:
print "%s doesn't appear to exist in Debian." % sourcepkg print "%s doesn't appear to exist in Debian." % sourcepkg
sys.exit(0) sys.exit(0)