diff --git a/debian/changelog b/debian/changelog index 8b0002a..20de9fd 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,7 +6,10 @@ ubuntu-dev-tools (0.66) UNRELEASED; urgency=low * pbuilder-dist: - Better error messages if cowbuilder/pbuilder/debootstrap isn't installed. - -- Siegfried-Angel Gevatter Pujals Wed, 04 Mar 2009 19:14:52 +0100 + [ Marco Rodrigues ] + * Remove workaround for Debian madison, it works fine now. + + -- Jonathan Davies Wed, 04 Mar 2009 20:45:10 +0000 ubuntu-dev-tools (0.65) jaunty; urgency=low diff --git a/requestsync b/requestsync index 4a39016..ad24ae5 100755 --- a/requestsync +++ b/requestsync @@ -180,13 +180,7 @@ def cur_deb_version(sourcepkg, distro): print "%s doesn't appear to exist in Debian." % sourcepkg sys.exit(1) - # Work-around for a bug in Debians madison.php script not returning - # only the source line - for line in out.splitlines(): - if line.find('source') > 0: - out = line - - return out.split('|')[1].rstrip('[]''').strip() + return out.split('|')[1].strip() def debian_changelog(sourcepkg, component, version): '''Return the Debian changelog from the latest up to the given version