summaryrefslogtreecommitdiffstats
path: root/bin/archive-conf
diff options
context:
space:
mode:
Diffstat (limited to 'bin/archive-conf')
-rwxr-xr-xbin/archive-conf13
1 files changed, 6 insertions, 7 deletions
diff --git a/bin/archive-conf b/bin/archive-conf
index 797866817..af34db628 100755
--- a/bin/archive-conf
+++ b/bin/archive-conf
@@ -1,5 +1,5 @@
#!/usr/bin/python
-# Copyright 1999-2006 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
#
@@ -12,12 +12,11 @@
from __future__ import print_function
import sys
-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 import os
from portage import dispatch_conf