diff options
-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 34da6c22a..cd065d25d 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -3848,7 +3848,7 @@ def fetch(myuris, mysettings, listonly=0, fetchonly=0, locks_in_subdir=".locks", myfetch = ["bash", "-c", "exec \"$@\"", myfetch[0]] + myfetch myret = portage.process.spawn(myfetch, - env=mysettings.environ(), **spawn_keywords) + env=dict(mysettings.iteritems()), **spawn_keywords) if mysettings.selinux_enabled(): selinux.setexec(None) |