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

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: Rebase Created 5 years, 3 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 dd6eea329d73924a2762545e3477871ab96dc074..6491540ba998c51bbbbfb785c67e10f9d2757c51 100755
--- a/download_from_google_storage.py
+++ b/download_from_google_storage.py
@@ -415,8 +415,11 @@ def main(args):
'If a directory with the same name as the tar.gz '
'file already exists, is deleted (to get a '
'clean state in case of update.)')
- 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('-q', '--quiet', action='store_false', dest='verbose',
+ 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