Need to apply to_str to each element of the list so that we don't mix types in the join()

"Third time's the charm"
pull/14899/head
Toshio Kuratomi 9 years ago committed by James Cammarata
parent 1b88366905
commit d25d06b0f4

@ -151,7 +151,7 @@ class Connection(ConnectionBase):
errors.append(u'%s: %s' % (transport, err_msg)) errors.append(u'%s: %s' % (transport, err_msg))
display.vvvvv(u'WINRM CONNECTION ERROR: %s\n%s' % (err_msg, to_unicode(traceback.format_exc())), host=self._winrm_host) display.vvvvv(u'WINRM CONNECTION ERROR: %s\n%s' % (err_msg, to_unicode(traceback.format_exc())), host=self._winrm_host)
if errors: if errors:
raise AnsibleError(to_str(u', '.join((errors)))) raise AnsibleError(', '.join(map(to_str, errors)))
else: else:
raise AnsibleError('No transport found for WinRM connection') raise AnsibleError('No transport found for WinRM connection')

Loading…
Cancel
Save