From f712a32238700bb45c64c2adf8193fad5a118038 Mon Sep 17 00:00:00 2001 From: Stefano Rivera Date: Tue, 8 Nov 2011 00:03:45 +0200 Subject: [PATCH] Reset support_gap at LTSs --- requestbackport | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/requestbackport b/requestbackport index 2ab1246..179214b 100755 --- a/requestbackport +++ b/requestbackport @@ -53,8 +53,11 @@ def determine_destinations(source, destination): if release == source: break if found: - if support_gap and not ubuntu_info.is_lts(release): - continue + if support_gap: + if ubuntu_info.is_lts(release): + support_gap = False + else: + continue if release not in ubuntu_info.supported(): support_gap = True continue