1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-31 12:49:46 +00:00

utils: fix typo in lockfile

(Bitbake rev: 53a10b6793c5bdb45854483abe5da791058dfd84)

Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Chris Larson
2011-03-08 09:39:40 -07:00
committed by Saul Wold
parent 55f72863b9
commit 5d01c9c296
+1 -1
View File
@@ -412,7 +412,7 @@ def lockfile(name, shared=False):
if not os.access(dirname, os.W_OK): if not os.access(dirname, os.W_OK):
logger.error("Unable to acquire lock '%s', directory is not writable", logger.error("Unable to acquire lock '%s', directory is not writable",
dirname) name)
sys.exit(1) sys.exit(1)
op = fcntl.LOCK_EX op = fcntl.LOCK_EX