diff options
author | Zac Medico <zmedico@gentoo.org> | 2011-08-25 22:47:45 -0700 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2011-08-25 22:47:45 -0700 |
commit | 79a1d928f819692f22e28eeb0f8d780d13871fa4 (patch) | |
tree | 090c7fae20050fa5bccec218db190f66f6704a0a | |
parent | e9251b4c51c580410695fae107d161c1147c9f88 (diff) | |
download | portage-79a1d928f819692f22e28eeb0f8d780d13871fa4.tar.gz portage-79a1d928f819692f22e28eeb0f8d780d13871fa4.tar.bz2 portage-79a1d928f819692f22e28eeb0f8d780d13871fa4.zip |
testLazyImport: fix PYTHONPATH setting
-rw-r--r-- | pym/portage/tests/lazyimport/test_lazy_import_portage_baseline.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/tests/lazyimport/test_lazy_import_portage_baseline.py b/pym/portage/tests/lazyimport/test_lazy_import_portage_baseline.py index 08ccfa7ff..c7ebbaff9 100644 --- a/pym/portage/tests/lazyimport/test_lazy_import_portage_baseline.py +++ b/pym/portage/tests/lazyimport/test_lazy_import_portage_baseline.py @@ -45,7 +45,7 @@ sys.stdout.write(" ".join(k for k in sys.modules else: pythonpath = ':' + pythonpath pythonpath = PORTAGE_PYM_PATH + pythonpath - env[pythonpath] = pythonpath + env['PYTHONPATH'] = pythonpath # If python is patched to insert the path of the # currently installed portage module into sys.path, |