summaryrefslogtreecommitdiff
path: root/Lib/imaplib.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-11-28 22:54:42 +0200
committerGitHub <noreply@github.com>2017-11-28 22:54:42 +0200
commita4a3020abc065d40f57069d6c69d02222ddc85d6 (patch)
tree204e84c1c4050c001f9d0f1fa8c8f509e4fd8e2e /Lib/imaplib.py
parentc615be5166ed338c052fa67fe781b9bfe0dfb78c (diff)
downloadcpython-git-a4a3020abc065d40f57069d6c69d02222ddc85d6.tar.gz
bpo-32157: Removed explicit quotes around %r and {!r}. (#4582)
Diffstat (limited to 'Lib/imaplib.py')
-rw-r--r--Lib/imaplib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/imaplib.py b/Lib/imaplib.py
index 1c0b03bff8..e1cece0b28 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