summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pym/portage/util/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/portage/util/__init__.py b/pym/portage/util/__init__.py
index 28e9428d9..8c5352239 100644
--- a/pym/portage/util/__init__.py
+++ b/pym/portage/util/__init__.py
@@ -535,8 +535,8 @@ def getconfig(mycfg, tolerant=0, allow_sourcing=False, expand=True):
expand_map = {}
mykeys = {}
try:
- # NOTE: shex doesn't seem to support unicode objects
- # (produces spurious \0 characters with python-2.6.2)
+ # NOTE: shlex doesn't support unicode objects with Python 2
+ # (produces spurious \0 characters).
if sys.hexversion < 0x3000000:
content = open(_unicode_encode(mycfg,
encoding=_encodings['fs'], errors='strict'), 'rb').read()