summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pym/portage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage.py b/pym/portage.py
index 4842294f7..7be9f72c7 100644
--- a/pym/portage.py
+++ b/pym/portage.py
@@ -1598,7 +1598,7 @@ class config:
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)