From b01de95171d6124f8acc7b907c1842472ea5f5fb Mon Sep 17 00:00:00 2001 From: Forest Date: Sun, 1 Dec 2024 21:52:51 +0000 Subject: [PATCH] imaplib: IDLE -> IMAP4 IDLE in exception message Co-authored-by: Peter Bierma --- Lib/imaplib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.47.3