summaryrefslogtreecommitdiffstats
path: root/pym/portage
diff options
context:
space:
mode:
authorMarius Mauch <genone@gentoo.org>2008-05-02 09:35:56 +0000
committerMarius Mauch <genone@gentoo.org>2008-05-02 09:35:56 +0000
commitfa0efbdd9696d841a84d7ea09ed67cf73a4f5fa8 (patch)
tree804ed26b790ac131019b1645c4233fc7b809cc8a /pym/portage
parent2102f181096aad44bb6bee720527c05da097e735 (diff)
downloadportage-fa0efbdd9696d841a84d7ea09ed67cf73a4f5fa8.tar.gz
portage-fa0efbdd9696d841a84d7ea09ed67cf73a4f5fa8.tar.bz2
portage-fa0efbdd9696d841a84d7ea09ed67cf73a4f5fa8.zip
fix typo
svn path=/main/trunk/; revision=10083
Diffstat (limited to 'pym/portage')
-rw-r--r--pym/portage/dbapi/vartree.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py
index ded583cd1..c79da9064 100644
--- a/pym/portage/dbapi/vartree.py
+++ b/pym/portage/dbapi/vartree.py
@@ -1313,7 +1313,7 @@ class dblink(object):
unlink_list.append(f)
for obj in unlink_list:
try:
- if os.path.islink(f):
+ if os.path.islink(obj):
obj_type = "sym"
else:
obj_type = "obj"