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

Side by Side Diff: weekly

Issue 2023943003: WIP. Just for bug repro. See http://crbug.com/616105. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 4 years, 6 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1
2
1 #!/usr/bin/env python 3 #!/usr/bin/env python
2 # Copyright (c) 2010 The Chromium Authors. All rights reserved. 4 # Copyright (c) 2010 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 5 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 6 # found in the LICENSE file.
5 7
6 """Display log of checkins of one particular developer since a particular 8 """Display log of checkins of one particular developer since a particular
7 date. Only works on git dependencies at the moment.""" 9 date. Only works on git dependencies at the moment."""
8 10
9 import gclient_utils 11 import gclient_utils
10 import optparse 12 import optparse
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 paths = [k for k, v in entries.items() if not re.search('svn', v)] 45 paths = [k for k, v in entries.items() if not re.search('svn', v)]
44 paths.sort() 46 paths.sort()
45 47
46 for path in paths: 48 for path in paths:
47 dir = os.path.normpath(os.path.join(root, path)) 49 dir = os.path.normpath(os.path.join(root, path))
48 show_log(dir, options.author, options.since) 50 show_log(dir, options.author, options.since)
49 51
50 52
51 if __name__ == '__main__': 53 if __name__ == '__main__':
52 main() 54 main()
OLDNEW
« 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