From 635dc2d03e2660b3cdfa38fa971e44c52c8b9f90 Mon Sep 17 00:00:00 2001 From: James Lu Date: Fri, 28 Oct 2016 20:12:08 -0700 Subject: [PATCH] PkgInfo: add Debian codename bullseye, Ubuntu codename zesty --- PkgInfo/plugin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PkgInfo/plugin.py b/PkgInfo/plugin.py index de3ba65..cbb2891 100644 --- a/PkgInfo/plugin.py +++ b/PkgInfo/plugin.py @@ -111,10 +111,10 @@ def _getDistro(release): release = release.lower() debian = ("oldoldstable", "oldstable", "wheezy", "stable", "jessie", "testing", "sid", "unstable", "stretch", "buster", - "experimental") + "experimental", "bullseye") debian_archive = ("bo", "hamm", "slink", "potato", "woody", "sarge", "etch", "lenny", "squeeze") - ubuntu = ("precise", "trusty", "wily", "xenial", "yakkety") + ubuntu = ("precise", "trusty", "wily", "xenial", "yakkety", "zesty") if release.startswith(debian): return "debian" elif release.startswith(ubuntu):