From 922ed8a0b07ef52a5696cb4cbe908236f2463f59 Mon Sep 17 00:00:00 2001 From: Nathan Rennie-Waldock Date: Wed, 29 Mar 2023 19:26:55 +0100 Subject: [PATCH] backportpackage: Fix incorrectly reporting unknown distribution for Ubuntu after 7fc6788 Signed-off-by: Nathan Rennie-Waldock --- backportpackage | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backportpackage b/backportpackage index bac51dd..2896617 100755 --- a/backportpackage +++ b/backportpackage @@ -449,7 +449,7 @@ def main(argv): if current_distro == "Ubuntu": args.dest_releases = [UbuntuDistroInfo().lts()] - if current_distro == "Debian": + elif current_distro == "Debian": args.dest_releases = [DebianDistroInfo().stable()] else: error("Unknown distribution %s, can't guess target release", current_distro) -- 2.34.1