summaryrefslogtreecommitdiffstats
path: root/bin/clean_locks
diff options
context:
space:
mode:
Diffstat (limited to 'bin/clean_locks')
-rwxr-xr-xbin/clean_locks8
1 files changed, 5 insertions, 3 deletions
diff --git a/bin/clean_locks b/bin/clean_locks
index 89473bd81..9799ad999 100755
--- a/bin/clean_locks
+++ b/bin/clean_locks
@@ -3,13 +3,15 @@
# Distributed under the terms of the GNU General Public License v2
# $Id$
-import os,sys,errno
+import sys, errno
try:
- import portage.locks
+ 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.locks
+ import portage
+
+from portage import os
if not sys.argv[1:] or "--help" in sys.argv or "-h" in sys.argv:
import portage