commit: f23732405a485b7a1863c3f644ae254d7c95dd2d Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org> AuthorDate: Sat Jan 3 18:08:19 2015 +0000 Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org> CommitDate: Sat Jan 3 18:21:23 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=f2373240
gkeys/actions.py: Fix mis-sorted Key_Actions --- gkeys/gkeys/actions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gkeys/gkeys/actions.py b/gkeys/gkeys/actions.py index c212609..e6a9bcd 100644 --- a/gkeys/gkeys/actions.py +++ b/gkeys/gkeys/actions.py @@ -35,8 +35,8 @@ Seed_Actions = ['----seeds----', 'add-seed', 'fetch-seed', 'list-seed', 'list-seedfiles', 'move-seed', 'remove-seed'] Key_Actions = ['----keys-----', 'check-key', 'import-key', 'installed', - 'install-key', 'search-key', 'list-key', 'move-key', 'refresh-key', 'remove-key', - 'spec-check'] + 'install-key', 'list-key', 'move-key', 'refresh-key', 'remove-key', + 'search-key', 'spec-check'] General_Actions = ['---general---', 'list-cats', 'sign','verify']