diff options
author | Zac Medico <zmedico@gentoo.org> | 2007-06-06 00:59:49 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2007-06-06 00:59:49 +0000 |
commit | 7c0ee9fb1805cf11d6c8818b4108033c8ed61397 (patch) | |
tree | c67a92453779dd779720e76e5fa00b74fa535a3a | |
parent | 6e1511af0ec50551b453f7848b4c5ee4c0ae7049 (diff) | |
download | portage-7c0ee9fb1805cf11d6c8818b4108033c8ed61397.tar.gz portage-7c0ee9fb1805cf11d6c8818b4108033c8ed61397.tar.bz2 portage-7c0ee9fb1805cf11d6c8818b4108033c8ed61397.zip |
Fix typo, split SPACE_SEPARATED variables on whitespace.
svn path=/main/trunk/; revision=6738
-rw-r--r-- | pym/portage/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 89f4a1f4e..db268e5fd 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -517,7 +517,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) |