From 05a8254234de3a315ed1ec33c26b56826678834d Mon Sep 17 00:00:00 2001 Message-Id: <05a8254234de3a315ed1ec33c26b56826678834d.1716860286.git.mdw@distorted.org.uk> From: Mark Wooding Date: Thu, 28 May 2015 10:57:28 +0100 Subject: [PATCH] pwsafe: Present the list of commands in alphabetical order. Organization: Straylight/Edgeware From: Mark Wooding Previously they were in whatever dictionary order. Hopeless. --- pwsafe | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwsafe b/pwsafe index 043db43..45086ad 100644 --- a/pwsafe +++ b/pwsafe @@ -236,7 +236,7 @@ Options: Commands provided: ''' - for c in commands: + for c in sorted(commands): print '%s %s' % (c, commands[c][1]) ## Choose a default database file. -- [mdw]