From 0b250016b09e759a1e0e4e01bb561ae9580bca38 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Wed, 8 Mar 2017 10:05:19 -0800 Subject: [PATCH] Fix PEP 8 issue. --- lib/ansible/plugins/cache/base.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/ansible/plugins/cache/base.py b/lib/ansible/plugins/cache/base.py index 001ffaf44eb..79be3d9d942 100644 --- a/lib/ansible/plugins/cache/base.py +++ b/lib/ansible/plugins/cache/base.py @@ -95,7 +95,8 @@ class BaseFileCacheModule(BaseCacheModule): else: for x in (os.R_OK, os.W_OK, os.X_OK): if not os.access(self._cache_dir, x): - raise AnsibleError("error in '%s' cache, configured path (%s) does not have necessary permissions (rwx), disabling plugin" % (self.plugin_name, self._cache_dir)) + raise AnsibleError("error in '%s' cache, configured path (%s) does not have necessary permissions (rwx), disabling plugin" % ( + self.plugin_name, self._cache_dir)) def get(self, key): """ This checks the in memory cache first as the fact was not expired at 'gather time'