diff options
| author | Barry Warsaw | 2015-03-13 21:16:51 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2015-03-13 21:16:51 -0400 |
| commit | 6280c5ffcd2fdebf80f170f7c9a4e47adf0c6c4a (patch) | |
| tree | abff21eb9eebe7049aad72ee79a31c22482cfc96 /src/mailman/commands/docs/lists.rst | |
| parent | a77f6650bc69ce968d3ac60d1b545d9bbdb9c62f (diff) | |
| parent | 4f9987aa91ddde4aff66ed9cb85b3c34d7c71dae (diff) | |
| download | mailman-6280c5ffcd2fdebf80f170f7c9a4e47adf0c6c4a.tar.gz mailman-6280c5ffcd2fdebf80f170f7c9a4e47adf0c6c4a.tar.zst mailman-6280c5ffcd2fdebf80f170f7c9a4e47adf0c6c4a.zip | |
Diffstat (limited to 'src/mailman/commands/docs/lists.rst')
| -rw-r--r-- | src/mailman/commands/docs/lists.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mailman/commands/docs/lists.rst b/src/mailman/commands/docs/lists.rst index 036147a23..04e0d744d 100644 --- a/src/mailman/commands/docs/lists.rst +++ b/src/mailman/commands/docs/lists.rst @@ -100,14 +100,14 @@ You can narrow the search down to a specific domain with the --domain option. A helpful message is displayed if no matching domains are given. >>> FakeArgs.quiet = False - >>> FakeArgs.domains = ['example.org'] + >>> FakeArgs.domain = ['example.org'] >>> command.process(FakeArgs) No matching mailing lists found But if a matching domain is given, only mailing lists in that domain are shown. - >>> FakeArgs.domains = ['example.net'] + >>> FakeArgs.domain = ['example.net'] >>> command.process(FakeArgs) 1 matching mailing lists found: list-one@example.net @@ -115,7 +115,7 @@ shown. More than one --domain argument can be given; then all mailing lists in matching domains are shown. - >>> FakeArgs.domains = ['example.com', 'example.net'] + >>> FakeArgs.domain = ['example.com', 'example.net'] >>> command.process(FakeArgs) 3 matching mailing lists found: list-one@example.com @@ -131,7 +131,7 @@ knowledge. Non-advertised lists are considered private. Display through the command line can select on this attribute. :: - >>> FakeArgs.domains = [] + >>> FakeArgs.domain = [] >>> FakeArgs.advertised = True >>> mlist_1.advertised = False |
