diff options
| author | Aurélien Bompard | 2016-10-26 10:30:58 +0200 |
|---|---|---|
| committer | Barry Warsaw | 2016-10-26 08:39:07 -0400 |
| commit | 88176f08e67a8f6ad706f371167167e75d4a3e04 (patch) | |
| tree | 29e4a10e478d6acc8b5342aa5976613b762c4bbc /src/mailman/interfaces/listmanager.py | |
| parent | e75d653f700dcf9a0a31550384d6511c47d024c1 (diff) | |
| download | mailman-88176f08e67a8f6ad706f371167167e75d4a3e04.tar.gz mailman-88176f08e67a8f6ad706f371167167e75d4a3e04.tar.zst mailman-88176f08e67a8f6ad706f371167167e75d4a3e04.zip | |
Diffstat (limited to 'src/mailman/interfaces/listmanager.py')
| -rw-r--r-- | src/mailman/interfaces/listmanager.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mailman/interfaces/listmanager.py b/src/mailman/interfaces/listmanager.py index 771eabd70..2c7208496 100644 --- a/src/mailman/interfaces/listmanager.py +++ b/src/mailman/interfaces/listmanager.py @@ -143,10 +143,11 @@ class IListManager(Interface): """An iterator over the 2-tuple of (list_name, mail_host) for all mailing lists managed by this list manager.""") - def find(**filters): + def find(*, advertised=None, mail_host=None): """Search for mailing lists matching some criteria. - The filters are mailing list properties that will be filtered upon. + The keyword arguments are mailing list properties that will be + filtered upon. :return: The list of filtered mailing lists. :rtype: list of `IMailingList` |
