summaryrefslogtreecommitdiffstats
path: root/pym/portage_locks.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage_locks.py')
-rw-r--r--pym/portage_locks.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/pym/portage_locks.py b/pym/portage_locks.py
index 027399a02..4a61f6312 100644
--- a/pym/portage_locks.py
+++ b/pym/portage_locks.py
@@ -11,7 +11,6 @@ import string
import time
import types
import portage_exception
-import portage_file
import portage_util
import portage_data
from portage_exec import atexit_register
@@ -24,7 +23,7 @@ def clean_my_hardlocks():
for x in hardlock_path_list:
hardlock_cleanup(x)
def add_hardlock_file_to_cleanup(path):
- mypath = portage_file.normpath(path)
+ mypath = portage_util.normalize_path(path)
if os.path.isfile(mypath):
mypath = os.path.dirname(mypath)
if os.path.isdir(mypath):