| OLD | NEW |
| 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 Loading... |
| 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() |
| OLD | NEW |