From fa9acea1690ff4be947b576f8303d72509fa69dc Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Mon, 7 Oct 2019 18:50:47 +0200 Subject: [PATCH] Sort listed commands --- bin/etherpump | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/etherpump b/bin/etherpump index 93e8f41..66d4e56 100755 --- a/bin/etherpump +++ b/bin/etherpump @@ -18,6 +18,8 @@ def subcommands(): name = module.split('.py')[0] subcommands.append(f' {name}') + subcommands.sort() + return '\n'.join(subcommands)