From 52c08a77b9cd4b51da10e6edc790da0a6378886b Mon Sep 17 00:00:00 2001 From: James Lu Date: Thu, 21 Apr 2016 19:14:22 -0700 Subject: [PATCH] PkgInfo: move squeeze to debian-archive --- PkgInfo/plugin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PkgInfo/plugin.py b/PkgInfo/plugin.py index 5837d94..d70094f 100644 --- a/PkgInfo/plugin.py +++ b/PkgInfo/plugin.py @@ -108,11 +108,11 @@ def _getDistro(release): Guesses the distribution from the release name.""" release = release.lower() - debian = ("oldoldstable", "squeeze", "oldstable", "wheezy", "stable", + debian = ("oldoldstable", "oldstable", "wheezy", "stable", "jessie", "testing", "sid", "unstable", "stretch", "buster", "experimental") debian_archive = ("bo", "hamm", "slink", "potato", "woody", "sarge", - "etch", "lenny") + "etch", "lenny", "squeeze") ubuntu = ("precise", "trusty", "vivid", "wily", "xenial") if release.startswith(debian): return "debian"