From 14aad2db40fbbe7abc97384e59f6fda7c0a3f003 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Tue, 2 Mar 2010 19:51:33 +0000 Subject: [PATCH] Validate categories. (trunk r15305) svn path=/main/branches/2.1.7/; revision=15540 --- pym/portage/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 8f4ef455b..8aece25b9 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -2102,7 +2102,8 @@ class config(object): #getting categories from an external file now categories = [grabfile(os.path.join(x, "categories")) for x in locations] self.categories = tuple(sorted( - stack_lists(categories, incremental=1))) + x for x in stack_lists(categories, incremental=1) + if dbapi._category_re.match(x) is not None)) del categories archlist = [grabfile(os.path.join(x, "arch.list")) for x in locations] -- 2.26.2