From a2ba6ea9aa0a766424cc163349007bac9c304568 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 19 Oct 2007 17:38:49 +0000 Subject: [PATCH] #1284: "S" means "seen", not unread. --- Doc/library/mailbox.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/mailbox.rst b/Doc/library/mailbox.rst index ce8dc59058..5192acb644 100644 --- a/Doc/library/mailbox.rst +++ b/Doc/library/mailbox.rst @@ -806,7 +806,7 @@ follows: A message is typically moved from :file:`new` to :file:`cur` after its mailbox has been accessed, whether or not the message is has been read. A message - ``msg`` has been read if ``"S" not in msg.get_flags()`` is ``True``. + ``msg`` has been read if ``"S" in msg.get_flags()`` is ``True``. .. method:: MaildirMessage.set_subdir(subdir) -- 2.50.1