diff options
author | Zac Medico <zmedico@gentoo.org> | 2007-08-23 20:28:37 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2007-08-23 20:28:37 +0000 |
commit | b9d3aa9320455b26b746404cbfa0e4a1ac25ec0c (patch) | |
tree | b46c7194bc7832f2237456963559ae14a0cfcccb | |
parent | 76360d5c454690d61e61d9c62373b6b4249a5fff (diff) | |
download | portage-b9d3aa9320455b26b746404cbfa0e4a1ac25ec0c.tar.gz portage-b9d3aa9320455b26b746404cbfa0e4a1ac25ec0c.tar.bz2 portage-b9d3aa9320455b26b746404cbfa0e4a1ac25ec0c.zip |
Add * and ~* to the list of valid values for ACCEPT_KEYWORDS.
svn path=/main/trunk/; revision=7688
-rw-r--r-- | pym/portage/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 7b2fa539c..a722d231c 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -1579,7 +1579,7 @@ class config(object): for group in groups: if group not in archlist and \ not (group.startswith("-") and group[1:] in archlist) and \ - group != "**": + group not in ("*", "~*", "**"): writemsg("!!! INVALID ACCEPT_KEYWORDS: %s\n" % str(group), noiselevel=-1) |