From 39159e143c3e97b864f9af61698cd80b53685c1c Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Thu, 24 Dec 2009 16:15:31 +0000 Subject: [PATCH] Merged revisions 77043 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r77043 | mark.dickinson | 2009-12-24 16:12:49 +0000 (Thu, 24 Dec 2009) | 9 lines Merged revisions 77041 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r77041 | mark.dickinson | 2009-12-24 16:06:58 +0000 (Thu, 24 Dec 2009) | 1 line 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 f803a5cbfe0..ec476572abe 100644 --- a/Lib/imaplib.py +++ b/Lib/imaplib.py @@ -740,7 +740,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)