summaryrefslogtreecommitdiffstats
path: root/pym/portage/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage/util.py')
-rw-r--r--pym/portage/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/util.py b/pym/portage/util.py
index a85948962..60e72fbb4 100644
--- a/pym/portage/util.py
+++ b/pym/portage/util.py
@@ -119,7 +119,7 @@ def grabfile(myfilename, compat_level=0, recursive=0):
for x in mylines:
#the split/join thing removes leading and trailing whitespace, and converts any whitespace in the line
#into single spaces.
- myline = u' '.join(x.split())
+ myline = _unicode_decode(' ').join(x.split())
if not len(myline):
continue
if myline[0]=="#":