Chromium Code Reviews| Index: download_from_google_storage.py |
| diff --git a/download_from_google_storage.py b/download_from_google_storage.py |
| index a45f387ce2aeb3a2d9f8f820206ff8e597eb1e5c..6243f96f6903e3dd1053b24d250de72f26495f39 100755 |
| --- a/download_from_google_storage.py |
| +++ b/download_from_google_storage.py |
| @@ -358,8 +358,11 @@ def main(args): |
| '(linux|mac|win). If so, the script will only ' |
| 'process files that are in the paths that ' |
| 'that matches the current platform.') |
| - parser.add_option('-v', '--verbose', action='store_true', |
| - help='Output extra diagnostic and progress information.') |
| + parser.add_option('-v', '--verbose', action='store_true', default=True, |
| + help='DEPRECATED: Defaults to True. Use --no-verbose ' |
| + 'to suppress.') |
| + parser.add_option('--no-verbose', action='store_false', dest='verbose', |
|
friedman1
2015/07/06 18:31:04
-q, --quiet instead? and then remove the deprecat
|
| + help='Suppresses diagnostic and progress information.') |
| (options, args) = parser.parse_args() |