aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2012-09-02 14:56:22 -0700
committerZac Medico <zmedico@gentoo.org>2012-09-02 14:56:22 -0700
commit50f098aee0282d5294b94c8c3c0074b3126724e6 (patch)
treeca9078d939793212de3e640034b92285d5cf34d5 /bin/emaint
parentemaint cleanconfmem: handle ROOT (diff)
downloadportage-50f098aee0282d5294b94c8c3c0074b3126724e6.tar.gz
portage-50f098aee0282d5294b94c8c3c0074b3126724e6.tar.bz2
portage-50f098aee0282d5294b94c8c3c0074b3126724e6.zip
Unconditionally insert our pym dir in sys.path.
This is especially necessary when running in prefix mode, since sys.path may contain the path for a different version of portage.
Diffstat (limited to 'bin/emaint')
-rwxr-xr-xbin/emaint11
1 files changed, 4 insertions, 7 deletions
diff --git a/bin/emaint b/bin/emaint
index bee46c40d..fd9f346b2 100755
--- a/bin/emaint
+++ b/bin/emaint
@@ -26,13 +26,10 @@ try:
except KeyboardInterrupt:
sys.exit(1)
-try:
- import portage
-except ImportError:
- from os import path as osp
- sys.path.insert(0, osp.join(osp.dirname(osp.dirname(osp.realpath(__file__))), "pym"))
- import portage
-
+from os import path as osp
+pym_path = osp.join(osp.dirname(osp.dirname(osp.realpath(__file__))), "pym")
+sys.path.insert(0, pym_path)
+import portage
from portage.emaint.main import emaint_main
try: