diff options
| author | David Soto | 2013-01-23 20:07:53 +0100 |
|---|---|---|
| committer | David Soto | 2013-01-23 20:07:53 +0100 |
| commit | d765fb012fcc068b7e7803a149e117b1cc1a2589 (patch) | |
| tree | 367093e102e03a20dde2a6d4ab0b7b731be6d395 /src | |
| parent | 44c03cb98722571f9f83c91a347d829f666b513f (diff) | |
| download | mailman-d765fb012fcc068b7e7803a149e117b1cc1a2589.tar.gz mailman-d765fb012fcc068b7e7803a149e117b1cc1a2589.tar.zst mailman-d765fb012fcc068b7e7803a149e117b1cc1a2589.zip | |
Diffstat (limited to 'src')
| -rw-r--r-- | src/mailman/commands/cli_mailmanconf.py | 11 | ||||
| -rw-r--r-- | src/mailman/commands/tests/test_mailmanconf.py | 3 |
2 files changed, 11 insertions, 3 deletions
diff --git a/src/mailman/commands/cli_mailmanconf.py b/src/mailman/commands/cli_mailmanconf.py index 1da9095fc..f29781473 100644 --- a/src/mailman/commands/cli_mailmanconf.py +++ b/src/mailman/commands/cli_mailmanconf.py @@ -52,10 +52,17 @@ class Mailmanconf: used.""")) command_parser.add_argument( '-s', '--section', - action='store', help=_("Section to use for the lookup (optional).")) + action='store', help=_("""\ + Section to use for the lookup. If no key is given, + all the key-value pairs of the given section will be displayed. + """)) command_parser.add_argument( '-k', '--key', - action='store', help=_("Key to use for the lookup (optional).")) + action='store', help=_("""\ + Key to use for the lookup. If no section is given, + all the key-values pair from any section matching the given key + will be displayed. + """)) def _get_value(self, section, key): return getattr(getattr(config, section), key) diff --git a/src/mailman/commands/tests/test_mailmanconf.py b/src/mailman/commands/tests/test_mailmanconf.py index 092c8a8d6..dbea2c362 100644 --- a/src/mailman/commands/tests/test_mailmanconf.py +++ b/src/mailman/commands/tests/test_mailmanconf.py @@ -72,4 +72,5 @@ class TestStart(unittest.TestCase): except SystemExit: pass self.assertEqual(self.command.parser.message, - 'Section mailman: No such key: thiskeydoesnotexist')
\ No newline at end of file + 'Section mailman: No such key: thiskeydoesnotexist') +
\ No newline at end of file |
