diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-01-26 12:20:14 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-01-26 12:20:14 +0000 |
commit | 5f866ac84f72699139be1d98f010017c7b71f0f7 (patch) | |
tree | e05ab35f9bec33a2ea67cb97062b24f04e67da15 /bitbake/lib | |
parent | 6a0abfa82dc11957bf803aeda9054ace85702f50 (diff) | |
download | ast2050-yocto-poky-5f866ac84f72699139be1d98f010017c7b71f0f7.zip ast2050-yocto-poky-5f866ac84f72699139be1d98f010017c7b71f0f7.tar.gz |
bitbake/unlockfile: Fix exception handling
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py index f2a79bd..a8da672 100644 --- a/bitbake/lib/bb/utils.py +++ b/bitbake/lib/bb/utils.py @@ -450,7 +450,7 @@ def unlockfile(lf): # removing the lockfile. Attempt this, ignore failures. fcntl.flock(lf.fileno(), fcntl.LOCK_EX|fcntl.LOCK_NB) os.unlink(lf.name) - except IOError, OSError: + except (IOError, OSError): pass fcntl.flock(lf.fileno(), fcntl.LOCK_UN) lf.close() |