diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-06-18 23:56:36 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-06-18 23:56:36 (GMT) |
commit | ff0a2bb523b7c92c53631055718dc91ac8fa3105 (patch) | |
tree | 0cbea9b644a456cf9fb0e3b2ac3ca5ddd21416a9 /Lib/imaplib.py | |
parent | fd4c9e87a79b917750d153a7330495b777358aa3 (diff) | |
download | cpython-ff0a2bb523b7c92c53631055718dc91ac8fa3105.zip cpython-ff0a2bb523b7c92c53631055718dc91ac8fa3105.tar.gz cpython-ff0a2bb523b7c92c53631055718dc91ac8fa3105.tar.bz2 |
Somebody checked this in w/ an ambiguous tab/space mix (reported by
Mark Favas).
Diffstat (limited to 'Lib/imaplib.py')
-rw-r--r-- | Lib/imaplib.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Lib/imaplib.py b/Lib/imaplib.py index 4706eea..6aca299 100644 --- a/Lib/imaplib.py +++ b/Lib/imaplib.py @@ -573,11 +573,11 @@ class IMAP4: return apply(self._simple_command, (name,) + args) def namespace(self): - """ Returns IMAP namespaces ala rfc2342 - """ - name = 'NAMESPACE' - typ, dat = self._simple_command(name) - return self._untagged_response(typ, dat, name) + """ Returns IMAP namespaces ala rfc2342 + """ + name = 'NAMESPACE' + typ, dat = self._simple_command(name) + return self._untagged_response(typ, dat, name) # Private methods |