Commit 58bd1909 authored by Kurt B. Kaiser's avatar Kurt B. Kaiser

SMTP.help() was returning a tuple instead of the promised text.

parent 40c7165e
......@@ -439,7 +439,7 @@ class SMTP:
"""SMTP 'help' command.
Returns help text from server."""
self.putcmd("help", args)
return self.getreply()
return self.getreply()[1]
def rset(self):
"""SMTP 'rset' command -- resets session."""
......
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