From: Tim Peters Date: Mon, 18 Jun 2001 23:56:36 +0000 (+0000) Subject: Somebody checked this in w/ an ambiguous tab/space mix (reported by X-Git-Tag: v2.2a3~1524 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ff0a2bb523b7c92c53631055718dc91ac8fa3105;p=thirdparty%2FPython%2Fcpython.git Somebody checked this in w/ an ambiguous tab/space mix (reported by Mark Favas). --- diff --git a/Lib/imaplib.py b/Lib/imaplib.py index 4706eea02d46..6aca2992c5b9 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