summaryrefslogtreecommitdiffstats
path: root/pym/portage_util.py
diff options
context:
space:
mode:
authorAlec Warner <antarus@gentoo.org>2007-01-12 09:08:27 +0000
committerAlec Warner <antarus@gentoo.org>2007-01-12 09:08:27 +0000
commit16a47ab97326e6193ad72f8965537b9d18efc915 (patch)
treecce062394b08c861f3999c9a6b6e6cbd32bea7e2 /pym/portage_util.py
parent0a4e534cfb812d5fa2e95af066b8769c6d2d3959 (diff)
downloadportage-16a47ab97326e6193ad72f8965537b9d18efc915.tar.gz
portage-16a47ab97326e6193ad72f8965537b9d18efc915.tar.bz2
portage-16a47ab97326e6193ad72f8965537b9d18efc915.zip
purge string from portage.py, fix minor bug in portage_util
svn path=/main/trunk/; revision=5604
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 407c7957d..d231e9fa6 100644
--- a/pym/portage_util.py
+++ b/pym/portage_util.py
@@ -47,7 +47,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="".join(x.split())
+ myline=" ".join(x.split())
if not len(myline):
continue
if myline[0]=="#":