From: Zac Medico Date: Thu, 9 Jun 2011 15:43:40 +0000 (-0700) Subject: lockfile: use hasattr() instead of dir() X-Git-Tag: v2.2.0_alpha39~6 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=6c5f977d943745f1eaa47da89e32b6c8cd49f41c;p=portage.git lockfile: use hasattr() instead of dir() --- diff --git a/pym/portage/locks.py b/pym/portage/locks.py index 50a920061..9ed1d6a6c 100644 --- a/pym/portage/locks.py +++ b/pym/portage/locks.py @@ -114,7 +114,7 @@ def lockfile(mypath, wantnewlockfile=0, unlinkfile=0, try: locking_method(myfd, fcntl.LOCK_EX|fcntl.LOCK_NB) except IOError as e: - if "errno" not in dir(e): + if not hasattr(e, "errno"): raise if e.errno in (errno.EACCES, errno.EAGAIN): # resource temp unavailable; eg, someone beat us to the lock.