diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-11-28 20:54:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-28 20:54:42 (GMT) |
commit | a4a3020abc065d40f57069d6c69d02222ddc85d6 (patch) | |
tree | 204e84c1c4050c001f9d0f1fa8c8f509e4fd8e2e /Lib/imaplib.py | |
parent | c615be5166ed338c052fa67fe781b9bfe0dfb78c (diff) | |
download | cpython-a4a3020abc065d40f57069d6c69d02222ddc85d6.zip cpython-a4a3020abc065d40f57069d6c69d02222ddc85d6.tar.gz cpython-a4a3020abc065d40f57069d6c69d02222ddc85d6.tar.bz2 |
bpo-32157: Removed explicit quotes around %r and {!r}. (#4582)
Diffstat (limited to 'Lib/imaplib.py')
-rw-r--r-- | Lib/imaplib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/imaplib.py b/Lib/imaplib.py index 1c0b03b..e1cece0 100644 --- a/Lib/imaplib.py +++ b/Lib/imaplib.py @@ -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 |