mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-30 14:21:26 -07:00
Expand disabled pylint rules. (#29162)
* Expand disabled pylint rules. * Fix pylint and unicode issues in ansible-test.
This commit is contained in:
parent
4c229e566e
commit
f88750d665
5 changed files with 87 additions and 9 deletions
|
@ -359,7 +359,7 @@ class TestFailure(TestResult):
|
|||
if self.summary:
|
||||
block = self.summary
|
||||
else:
|
||||
block = '\n'.join(str(m) for m in self.messages)
|
||||
block = '\n'.join(m.format() for m in self.messages)
|
||||
|
||||
message = block.strip()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue