Improve quoting in raises match failure message

This commit is contained in:
Anthony Sottile
2019-07-04 05:55:26 -07:00
parent b08ae4449b
commit caa08ebd45
3 changed files with 10 additions and 2 deletions

View File

@@ -544,7 +544,7 @@ class ExceptionInfo:
"""
__tracebackhide__ = True
if not re.search(regexp, str(self.value)):
assert 0, "Pattern '{!s}' not found in '{!s}'".format(regexp, self.value)
assert 0, "Pattern {!r} not found in {!r}".format(regexp, str(self.value))
return True