Merge pull request #9697 from quixoten/allow_gitkeep

Allow .gitkeep in the jsonfile fact cache dir
pull/4420/head
Brian Coca 2014-12-03 07:48:30 -05:00
commit a060128162
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ class CacheModule(BaseCacheModule):
def keys(self):
keys = []
for k in os.listdir(self._cache_dir):
if not self.has_expired(k):
if not (k.startswith('.') or self.has_expired(k)):
keys.append(k)
return keys