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

Unified Diff: apply_issue.py

Issue 8038056: Fix handling of file renames. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Rebase against HEAD Created 9 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 69faf8dc2513774903f8ce9774e1a11eb1d1b6e7..5bf72197be69d2c99f44c63fd49d09656b6acfea 100755
--- a/apply_issue.py
+++ b/apply_issue.py
@@ -40,7 +40,7 @@ def main():
help='Rietveld server')
options, args = parser.parse_args()
logging.basicConfig(
- format='%(levelname)s %(filename)s(%(lineno)d): %(message)s',
+ format='%(levelname)5s %(module)11s(%(lineno)4d): %(message)s',
level=[logging.WARNING, logging.INFO, logging.DEBUG][
min(2, options.verbose)])
if args:
@@ -56,7 +56,8 @@ def main():
logging.info('Using patchset %d' % options.patchset)
# Download the patch.
patchset = obj.get_patch(options.issue, options.patchset)
-
+ for patch in patchset.patches:
+ logging.info(patch)
scm_type = scm.determine_scm(options.root_dir)
if scm_type == 'svn':
scm_obj = checkout.SvnCheckout(options.root_dir, None, None, None, None)
« 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