From: Forest Date: Sun, 1 Dec 2024 21:52:51 +0000 (+0000) Subject: imaplib: IDLE -> IMAP4 IDLE in exception message X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b01de95171d6124f8acc7b907c1842472ea5f5fb;p=thirdparty%2FPython%2Fcpython.git imaplib: IDLE -> IMAP4 IDLE in exception message Co-authored-by: Peter Bierma --- diff --git a/Lib/imaplib.py b/Lib/imaplib.py index b006a74a8190..c64dd153e545 100644 --- a/Lib/imaplib.py +++ b/Lib/imaplib.py @@ -1410,7 +1410,7 @@ class Idler: def __init__(self, imap, dur=None): if 'IDLE' not in imap.capabilities: - raise imap.error("Server does not support IDLE") + raise imap.error("Server does not support IMAP4 IDLE") self._dur = dur self._imap = imap self._tag = None