Add space to error message output (#76063)

This commit is contained in:
Sebastian Gumprich
2021-10-19 17:18:30 +02:00
committed by GitHub
parent 3add434269
commit 6e6f846db1
+1 -1
View File
@@ -409,7 +409,7 @@ class ActionBase(with_metaclass(ABCMeta, object)):
elif u'No space left on device' in result['stderr']:
output = result['stderr']
else:
output = ('Failed to create temporary directory.'
output = ('Failed to create temporary directory. '
'In some cases, you may have been able to authenticate and did not have permissions on the target directory. '
'Consider changing the remote tmp path in ansible.cfg to a path rooted in "/tmp", for more error information use -vvv. '
'Failed command was: %s, exited with result %d' % (cmd, result['rc']))