summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorPiers Lauder <piers@cs.su.oz.au>2004-03-25 00:12:21 (GMT)
committerPiers Lauder <piers@cs.su.oz.au>2004-03-25 00:12:21 (GMT)
commitf167dc33805ad5e9c15327628969b91383eca037 (patch)
treeb6ee2f2368b552e356b90ee3b03aef7c48fcfec5 /Lib
parente5662aedef12b8d49c5c6c52d0e3fb47e66dbe0a (diff)
downloadcpython-f167dc33805ad5e9c15327628969b91383eca037.zip
cpython-f167dc33805ad5e9c15327628969b91383eca037.tar.gz
cpython-f167dc33805ad5e9c15327628969b91383eca037.tar.bz2
fix name in setacl method doc string
Diffstat (limited to 'Lib')
-rw-r--r--Lib/imaplib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/imaplib.py b/Lib/imaplib.py
index 0112ddc..b70c47c 100644
--- a/Lib/imaplib.py
+++ b/Lib/imaplib.py
@@ -621,7 +621,7 @@ class IMAP4:
def setacl(self, mailbox, who, what):
"""Set a mailbox acl.
- (typ, [data]) = <instance>.create(mailbox, who, what)
+ (typ, [data]) = <instance>.setacl(mailbox, who, what)
"""
return self._simple_command('SETACL', mailbox, who, what)