diff options
| author | Mark Dickinson <dickinsm@gmail.com> | 2009-12-24 16:06:58 (GMT) | 
|---|---|---|
| committer | Mark Dickinson <dickinsm@gmail.com> | 2009-12-24 16:06:58 (GMT) | 
| commit | db69f01ea909ccd5209f0e2cd532263760f67ce7 (patch) | |
| tree | 729a9c3bb6d3eecd8cd5a0fbcda8aef582d058c0 /Lib/imaplib.py | |
| parent | 27cae34bd0230cb684f58ff45fb00a2ca410eba2 (diff) | |
| download | cpython-db69f01ea909ccd5209f0e2cd532263760f67ce7.zip cpython-db69f01ea909ccd5209f0e2cd532263760f67ce7.tar.gz cpython-db69f01ea909ccd5209f0e2cd532263760f67ce7.tar.bz2  | |
Issue #7568:  typo in docstring.  Thanks Mike Putnam.
Diffstat (limited to 'Lib/imaplib.py')
| -rw-r--r-- | Lib/imaplib.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/imaplib.py b/Lib/imaplib.py index 5a45845..0ea307b 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]) = <instance>.thread(threading_alogrithm, charset, search_criteria, ...) +        (type, [data]) = <instance>.thread(threading_algorithm, charset, search_criteria, ...)          """          name = 'THREAD'          typ, dat = self._simple_command(name, threading_algorithm, charset, *search_criteria)  | 
