ansible: fix is_good_temp_dir() log format

This commit is contained in:
David Wilson 2018-10-26 11:11:25 +01:00
parent c1c7e5171d
commit 7e04ee8af9
1 changed files with 1 additions and 1 deletions

View File

@ -250,7 +250,7 @@ def is_good_temp_dir(path):
if not os.access(tmp.name, os.X_OK):
raise OSError('filesystem appears to be mounted noexec')
except OSError as e:
LOG.debug('temp dir %r unusable: %s: %s', path, e)
LOG.debug('temp dir %r unusable: %s', path, e)
return False
finally:
tmp.close()