bpo-32157: Removed explicit quotes around %r and {!r}. (#4582)

This commit is contained in:
Serhiy Storchaka 2017-11-28 22:54:42 +02:00 committed by GitHub
parent c615be5166
commit a4a3020abc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 6 deletions

View file

@ -1166,7 +1166,7 @@ class IMAP4:
self.mo = cre.match(s)
if __debug__:
if self.mo is not None and self.debug >= 5:
self._mesg("\tmatched r'%r' => %r" % (cre.pattern, self.mo.groups()))
self._mesg("\tmatched %r => %r" % (cre.pattern, self.mo.groups()))
return self.mo is not None