]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Somebody checked this in w/ an ambiguous tab/space mix (reported by
authorTim Peters <tim.peters@gmail.com>
Mon, 18 Jun 2001 23:56:36 +0000 (23:56 +0000)
committerTim Peters <tim.peters@gmail.com>
Mon, 18 Jun 2001 23:56:36 +0000 (23:56 +0000)
Mark Favas).

Lib/imaplib.py

index 4706eea02d4689e0196fd02b94570ab1796e3425..6aca2992c5b9e18debc434666c1705e385157520 100644 (file)
@@ -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