From c6a13282f89e40ee980f3e318481c468fd4716e2 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Wed, 22 Aug 2007 21:37:34 +0000 Subject: Make best() return early when it's only given one package. (trunk r7664) svn path=/main/branches/2.1.2/; revision=7668 --- pym/portage_versions.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pym/portage_versions.py b/pym/portage_versions.py index 91b8cc164..cf8d20d4f 100644 --- a/pym/portage_versions.py +++ b/pym/portage_versions.py @@ -311,10 +311,10 @@ def catsplit(mydep): def best(mymatches): """Accepts None arguments; assumes matches are valid.""" - if mymatches is None: - return "" - if not len(mymatches): + if not mymatches: return "" + if len(mymatches) == 1: + return mymatches[0] bestmatch = mymatches[0] p2 = catpkgsplit(bestmatch)[1:] for x in mymatches[1:]: -- cgit v1.2.3-1-g7c22