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

Unified Diff: tools/findit/git_repository_parser.py

Issue 504443004: [Findit] Improve output format and cherry-pick bugs fix. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix nit. Created 6 years, 4 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
« tools/findit/common/utils.py ('K') | « tools/findit/findit_for_crash.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/findit/git_repository_parser.py
diff --git a/tools/findit/git_repository_parser.py b/tools/findit/git_repository_parser.py
index d4564f8ae53bba473092a32e9fa06d6aa8535237..4e306e289a9a9e8b807f8ebd48d92916a067d2d0 100644
--- a/tools/findit/git_repository_parser.py
+++ b/tools/findit/git_repository_parser.py
@@ -12,7 +12,8 @@ from repository_parser_interface import ParserInterface
FILE_CHANGE_TYPE_MAP = {
'add': 'A',
'delete': 'D',
- 'modify': 'M'
+ 'modify': 'M',
+ 'rename': 'R'
}
aarya 2014/08/26 02:13:53 I fixed this by guess. I was crashing in rename ke
stgao 2014/08/26 18:35:24 I will check this after lunch.
« tools/findit/common/utils.py ('K') | « tools/findit/findit_for_crash.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698