Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(88)

Unified Diff: download_from_google_storage.py

Issue 1223793008: Default download_from_google_storage.py to verbose (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Revise Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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()
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698