summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2006-07-15 19:09:11 +0000
committerZac Medico <zmedico@gentoo.org>2006-07-15 19:09:11 +0000
commit35e09c1a73bd5865a708a4c45c9c48e5f70a6f13 (patch)
treed082b9f138493df31d15f59179e7c3e062553dc8 /pym/portage_locks.py
parentMove normalize_path into portage_util. (diff)
downloadportage-multirepo-35e09c1a73bd5865a708a4c45c9c48e5f70a6f13.tar.gz
portage-multirepo-35e09c1a73bd5865a708a4c45c9c48e5f70a6f13.tar.bz2
portage-multirepo-35e09c1a73bd5865a708a4c45c9c48e5f70a6f13.zip
Remove the portage_file module for bug #133591.
svn path=/main/trunk/; revision=3892
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 027399a0..4a61f631 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):