summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-06-08 19:37:15 +0000
committerZac Medico <zmedico@gentoo.org>2007-06-08 19:37:15 +0000
commit87510cdd5f5e9b741b6b1efe29767bb858dd32e9 (patch)
tree22a4a4962441f40308c7b7d75243d3f2e9f51f2b /pym
parentba79ae3598f97889a71797a8b1f9cb393c868653 (diff)
downloadportage-87510cdd5f5e9b741b6b1efe29767bb858dd32e9.tar.gz
portage-87510cdd5f5e9b741b6b1efe29767bb858dd32e9.tar.bz2
portage-87510cdd5f5e9b741b6b1efe29767bb858dd32e9.zip
Fix typo, split SPACE_SEPARATED variables on whitespace. (trunk r6738)
svn path=/main/branches/2.1.2/; revision=6759
Diffstat (limited to 'pym')
-rw-r--r--pym/portage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage.py b/pym/portage.py
index bbd5da93d..d52a6da57 100644
--- a/pym/portage.py
+++ b/pym/portage.py
@@ -595,7 +595,7 @@ def env_update(makelinks=1, target_root=None, prev_mtimes=None, contents=None):
mylist = []
for myconfig in config_list:
if var in myconfig:
- for item in myconfig[var].split(""):
+ for item in myconfig[var].split():
if item and not item in mylist:
mylist.append(item)
del myconfig[var] # prepare for env.update(myconfig)