diff options
author | Piers Lauder <piers@cs.su.oz.au> | 2004-03-25 00:12:21 (GMT) |
---|---|---|
committer | Piers Lauder <piers@cs.su.oz.au> | 2004-03-25 00:12:21 (GMT) |
commit | f167dc33805ad5e9c15327628969b91383eca037 (patch) | |
tree | b6ee2f2368b552e356b90ee3b03aef7c48fcfec5 /Lib/imaplib.py | |
parent | e5662aedef12b8d49c5c6c52d0e3fb47e66dbe0a (diff) | |
download | cpython-f167dc33805ad5e9c15327628969b91383eca037.zip cpython-f167dc33805ad5e9c15327628969b91383eca037.tar.gz cpython-f167dc33805ad5e9c15327628969b91383eca037.tar.bz2 |
fix name in setacl method doc string
Diffstat (limited to 'Lib/imaplib.py')
-rw-r--r-- | Lib/imaplib.py | 2 |
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) |