summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/ftplib.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/ftplib.py b/Lib/ftplib.py
index 0dc0d6e..e6e1a3a 100644
--- a/Lib/ftplib.py
+++ b/Lib/ftplib.py
@@ -328,6 +328,11 @@ class FTP:
conn.close()
self.voidresp()
+ # Send new account name
+ def acct(self, password):
+ cmd = 'ACCT ' + password
+ self.voidcmd(cmd)
+
# Return a list of files in a given directory (default the current)
def nlst(self, *args):
cmd = 'NLST'