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