Commit ff0a2bb5 authored by Tim Peters's avatar Tim Peters

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

Mark Favas).
parent fd4c9e87
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment