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

Side by Side Diff: git_utils/git-tree-prune

Issue 10440030: Rename git-utils to git_utils so it can be imported with python. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Oops! Created 8 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 | Annotate | Revision Log
« no previous file with comments | « git-utils/git-tree-prune ('k') | 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 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """Lists branches with closed and abandoned issues.""" 6 """Lists branches with closed and abandoned issues."""
7 7
8 import optparse 8 import optparse
9 import os 9 import os
10 import sys 10 import sys
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 76
77 print "\n# Branches without associated issues" 77 print "\n# Branches without associated issues"
78 for branch in filtered['no-issue']: 78 for branch in filtered['no-issue']:
79 print "# Branch %s" % (branch.GetBranch()) 79 print "# Branch %s" % (branch.GetBranch())
80 80
81 return 0 81 return 0
82 82
83 83
84 if __name__ == '__main__': 84 if __name__ == '__main__':
85 sys.exit(main()) 85 sys.exit(main())
OLDNEW
« no previous file with comments | « git-utils/git-tree-prune ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698