summaryrefslogtreecommitdiffstats
path: root/bin/binhost-snapshot
diff options
context:
space:
mode:
Diffstat (limited to 'bin/binhost-snapshot')
-rwxr-xr-xbin/binhost-snapshot13
1 files changed, 5 insertions, 8 deletions
diff --git a/bin/binhost-snapshot b/bin/binhost-snapshot
index 9d2697d03..fe2cf6b53 100755
--- a/bin/binhost-snapshot
+++ b/bin/binhost-snapshot
@@ -1,5 +1,5 @@
#!/usr/bin/python
-# Copyright 2010-2011 Gentoo Foundation
+# Copyright 2010-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
import io
@@ -13,13 +13,10 @@ try:
except ImportError:
from urlparse import urlparse
-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
def parse_args(argv):
prog_name = os.path.basename(argv[0])