diff options
Diffstat (limited to 'src/mailman/commands/cli_info.py')
| -rw-r--r-- | src/mailman/commands/cli_info.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mailman/commands/cli_info.py b/src/mailman/commands/cli_info.py index 98a025673..1a4ea75b4 100644 --- a/src/mailman/commands/cli_info.py +++ b/src/mailman/commands/cli_info.py @@ -51,7 +51,7 @@ class Info: File to send the output to. If not given, standard output is used.""")) command_parser.add_argument( - '-p', '--paths', + '-v', '--verbose', action='store_true', help=_("""\ A more verbose output including the file system paths that Mailman is using.""")) @@ -68,7 +68,7 @@ class Info: print >> output, 'Python', sys.version print >> output, 'config file:', config.filename print >> output, 'db url:', config.db.url - if args.paths: + if args.verbose: print >> output, 'File system paths:' longest = 0 paths = {} |
