summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pym/portage/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py
index 1b04d35b1..2d04df180 100644
--- a/pym/portage/__init__.py
+++ b/pym/portage/__init__.py
@@ -1526,7 +1526,7 @@ class config:
noiselevel=-1)
rValue.append("@"+group_name)
if negate:
- rvalue = ["-" + token for token in rValue]
+ rValue = ["-" + token for token in rValue]
return rValue
def validate(self):