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 8bf342248..0b5444387 100644
--- a/pym/portage/__init__.py
+++ b/pym/portage/__init__.py
@@ -2036,7 +2036,7 @@ class config:
# Use the calculated USE flags to regenerate the USE_EXPAND flags so
# that they are consistent.
iuse = self.configdict["pkg"].get("IUSE","").split()
- iuse = set([ x.lstrip("+-") for x in iuse ])
+ iuse = [ x.lstrip("+-") for x in iuse ]
for var in use_expand:
prefix = var.lower() + "_"
prefix_len = len(prefix)