fix typo in the warning message when the parent directory of the cache file does not exist
This commit is contained in:
parent
b7f3b20f57
commit
ec664e24d3
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ def parselock(lockfile, locktimeout, config):
|
|||
lockfile = os.path.expanduser(lockfile)
|
||||
lockfileparent = os.path.dirname(lockfile)
|
||||
if lockfileparent and not os.path.exists(lockfileparent):
|
||||
sys.exit('The parent directory of the cache file does not exist: {lockfileparent}'.format(lockfileparent=lockfileparent))
|
||||
sys.exit('The parent directory of the lock file does not exist: {lockfileparent}'.format(lockfileparent=lockfileparent))
|
||||
######################
|
||||
# lock_timeout option
|
||||
######################
|
||||
|
|
Loading…
Reference in a new issue