Chromium Code Reviews| Index: cit.py |
| diff --git a/cit.py b/cit.py |
| index c191f6339f961137d94494e75acb02ec4a5802dd..aeab2e90c5ccc6af3b4456665ba6d0eef44ebe95 100755 |
| --- a/cit.py |
| +++ b/cit.py |
| @@ -77,7 +77,7 @@ def get_available_tools(): |
| for root, _, files in os.walk(starting): |
| if '__main__.py' in files: |
| tools.append(root[len(starting)+1:].replace(os.path.sep, '.')) |
| - return tools |
| + return sorted(tools) |
| def run(args): |