From db69f01ea909ccd5209f0e2cd532263760f67ce7 Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Thu, 24 Dec 2009 16:06:58 +0000 Subject: [PATCH] Issue #7568: typo in docstring. Thanks Mike Putnam. --- Lib/imaplib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/imaplib.py b/Lib/imaplib.py index 5a458459bd3..0ea307b3c88 100644 --- a/Lib/imaplib.py +++ b/Lib/imaplib.py @@ -726,7 +726,7 @@ class IMAP4: def thread(self, threading_algorithm, charset, *search_criteria): """IMAPrev1 extension THREAD command. - (type, [data]) = .thread(threading_alogrithm, charset, search_criteria, ...) + (type, [data]) = .thread(threading_algorithm, charset, search_criteria, ...) """ name = 'THREAD' typ, dat = self._simple_command(name, threading_algorithm, charset, *search_criteria)