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

Unified Diff: apply_issue.py

Issue 11028002: Make apply_issue.py much more verbose about what it's doing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Fix unit test Created 8 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 | checkout.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: apply_issue.py
diff --git a/apply_issue.py b/apply_issue.py
index 3eb4d61f321d217b5f970161a2e0a7c0e4821c7b..da8d54211986d1137a0fe3916ce02aeb61458c30 100755
--- a/apply_issue.py
+++ b/apply_issue.py
@@ -132,9 +132,9 @@ def main():
# chromium_commands.py?view=markup
open('.buildbot-patched', 'w').close()
- # Apply the patch.
+ print('\nApplying the patch.')
try:
- scm_obj.apply_patch(patchset)
+ scm_obj.apply_patch(patchset, verbose=True)
except checkout.PatchApplicationFailed, e:
print >> sys.stderr, str(e)
return 1
« no previous file with comments | « no previous file | checkout.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698