diff options
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 |