mail: Fix cannot concatenate 'str' and 'int' objects

Fix an error in callback plugin when exceptions are being returned on failure.
pull/36413/head
Dag Wieers 7 years ago committed by GitHub
parent 5bc9bb9fbb
commit 3ce5261272
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -199,10 +199,10 @@ class CallbackModule(CallbackBase):
body += self.body_blob(result._result['stderr'], 'error output')
if result._result.get('warnings'):
for i in range(len(result._result.get('warnings'))):
body += self.body_blob(result._result['warnings'][i], 'exception %d' % i + 1)
body += self.body_blob(result._result['warnings'][i], 'exception %d' % (i + 1))
if result._result.get('deprecations'):
for i in range(len(result._result.get('deprecations'))):
body += self.body_blob(result._result['deprecations'][i], 'exception %d' % i + 1)
body += self.body_blob(result._result['deprecations'][i], 'exception %d' % (i + 1))
body += 'and a complete dump of the error:\n\n'
body += self.indent('%s: %s' % (failtype, json.dumps(result._result, indent=4)))

Loading…
Cancel
Save