diff --git a/debian/changelog b/debian/changelog index 02a4b6a..308b480 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,7 +1,8 @@ ubuntu-dev-tools (0.151) UNRELEASED; urgency=low * Since Britney migration was introduced in Ubuntu, automatic syncing is - always done from unstable. + always done from unstable. Adjust requstsync & syncpackage to always + default to unstable. -- Dmitrijs Ledkovs Tue, 22 Oct 2013 17:02:41 +0100 diff --git a/doc/requestsync.1 b/doc/requestsync.1 index 3075057..cef3a84 100644 --- a/doc/requestsync.1 +++ b/doc/requestsync.1 @@ -44,7 +44,7 @@ Display a help message and exit. .TP .B \-d Specifies which Debian distribution a package should be synced from. -Default is \fItesting\fR in LTS cycles, otherwise \fIunstable\fR. +Default is \fIunstable\fR. .TP .B \-n Specifies that the package is a new package, and requestsync should not diff --git a/requestsync b/requestsync index f1ca8a2..e77b40b 100755 --- a/requestsync +++ b/requestsync @@ -45,11 +45,6 @@ from ubuntutools.question import confirmation_prompt, EditBugReport def main(): ubu_info = UbuntuDistroInfo() DEFAULT_SOURCE = 'unstable' - try: - if ubu_info.is_lts(ubu_info.devel()): - DEFAULT_SOURCE = 'testing' - except DistroDataOutdated, e: - print >> sys.stderr, str(e) # Our usage options. usage = ('Usage: %prog [options] '