summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xLib/smtplib.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/smtplib.py b/Lib/smtplib.py
index 24e46ad..6a12621 100755
--- a/Lib/smtplib.py
+++ b/Lib/smtplib.py
@@ -150,9 +150,9 @@ class SMTP:
self.helo_resp=msg
return code
- def help(self):
+ def help(self, args=''):
""" SMTP 'help' command. Returns help text from server """
- self.putcmd("help")
+ self.putcmd("help", args)
(code,msg)=self.getreply()
return msg