diff options
| author | Barry Warsaw | 2010-03-28 17:38:03 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2010-03-28 17:38:03 -0400 |
| commit | 40f3c0cb594f8a4a918ec2974f442de73455b6ef (patch) | |
| tree | 3400346084348115ffd4dca8a62586e5b0bbd3eb /src/mailman/commands/cli_info.py | |
| parent | e2e024972d130f919890bb84aeab02354e0ff5c1 (diff) | |
| download | mailman-40f3c0cb594f8a4a918ec2974f442de73455b6ef.tar.gz mailman-40f3c0cb594f8a4a918ec2974f442de73455b6ef.tar.zst mailman-40f3c0cb594f8a4a918ec2974f442de73455b6ef.zip | |
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 = {} |
