Somebody checked this in w/ an ambiguous tab/space mix (reported by

Mark Favas).
This commit is contained in:
Tim Peters 2001-06-18 23:56:36 +00:00
parent fd4c9e87a7
commit ff0a2bb523
1 changed files with 5 additions and 5 deletions

View 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