Commit 0878b053 authored by dsansome@chromium.org's avatar dsansome@chromium.org

Sort the list of tools shown by cit.py's help message

(it looks nicer)

BUG=

Review URL: https://codereview.chromium.org/1682293002

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@298842 0039d316-1c4b-4281-b951-d872f2087c98
parent d4ef599b
......@@ -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):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment