syncpackage: Default to <current_series>-proposed.

This commit is contained in:
Colin Watson 2012-10-25 16:58:10 +01:00
parent 1c698ff626
commit cc55071afd
2 changed files with 4 additions and 1 deletions

3
debian/changelog vendored
View File

@ -28,6 +28,9 @@ ubuntu-dev-tools (0.144) UNRELEASED; urgency=low
(LP: #1029155)
* sponsor-patch: Fix crash if Debian patch contains a slash.
[ Colin Watson ]
* syncpackage: Default to <current_series>-proposed.
-- Stefano Rivera <stefanor@ubuntu.com> Wed, 18 Jul 2012 12:47:01 +0200
ubuntu-dev-tools (0.143) unstable; urgency=low

View File

@ -655,7 +655,7 @@ def main():
if options.release is None:
ubuntu = Launchpad.distributions["ubuntu"]
options.release = ubuntu.current_series.name
options.release = "%s-proposed" % ubuntu.current_series.name
if not options.fakesync and not options.lp:
Logger.warn("The use of --no-lp is not recommended for uploads "