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, 2 insertions, 1 deletions
diff --git a/pym/portage/locks.py b/pym/portage/locks.py
index cab0fa3b5..980c1c762 100644
--- a/pym/portage/locks.py
+++ b/pym/portage/locks.py
@@ -285,7 +285,8 @@ def hardlink_is_mine(link,lock):
return lock_st.st_ino == link_st.st_ino and \
lock_st.st_dev == link_st.st_dev
except OSError:
- return False
+ pass
+ return False
def hardlink_lockfile(lockfilename, max_wait=DeprecationWarning,
waiting_msg=None, flags=0):