From ec664e24d344275ec6954f2518aa0747028db692 Mon Sep 17 00:00:00 2001 From: Carl Chenet Date: Fri, 23 Aug 2019 01:10:20 +0200 Subject: [PATCH] fix typo in the warning message when the parent directory of the cache file does not exist --- feed2toot/confparsers/lock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/feed2toot/confparsers/lock.py b/feed2toot/confparsers/lock.py index 06f478a..9588d9c 100644 --- a/feed2toot/confparsers/lock.py +++ b/feed2toot/confparsers/lock.py @@ -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 ######################