From 7e04ee8af9fcd471a5affa307da148e4043ad217 Mon Sep 17 00:00:00 2001 From: David Wilson Date: Fri, 26 Oct 2018 11:11:25 +0100 Subject: [PATCH] ansible: fix is_good_temp_dir() log format --- ansible_mitogen/target.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible_mitogen/target.py b/ansible_mitogen/target.py index ff6ed083..69a082af 100644 --- a/ansible_mitogen/target.py +++ b/ansible_mitogen/target.py @@ -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()