diff options
Diffstat (limited to 'bitbake')
-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 f2a79bd630..a8da672b51 100644 --- a/bitbake/lib/bb/utils.py +++ b/bitbake/lib/bb/utils.py | |||
@@ -450,7 +450,7 @@ def unlockfile(lf): | |||
450 | # removing the lockfile. Attempt this, ignore failures. | 450 | # removing the lockfile. Attempt this, ignore failures. |
451 | fcntl.flock(lf.fileno(), fcntl.LOCK_EX|fcntl.LOCK_NB) | 451 | fcntl.flock(lf.fileno(), fcntl.LOCK_EX|fcntl.LOCK_NB) |
452 | os.unlink(lf.name) | 452 | os.unlink(lf.name) |
453 | except IOError, OSError: | 453 | except (IOError, OSError): |
454 | pass | 454 | pass |
455 | fcntl.flock(lf.fileno(), fcntl.LOCK_UN) | 455 | fcntl.flock(lf.fileno(), fcntl.LOCK_UN) |
456 | lf.close() | 456 | lf.close() |