diff options
author | Brian Dolbec <dolsen@gentoo.org> | 2015-01-03 10:08:48 -0800 |
---|---|---|
committer | Brian Dolbec <dolsen@gentoo.org> | 2015-01-05 14:14:36 -0800 |
commit | 147295dbd64a178a918a41341aa12fc14ecd63f8 (patch) | |
tree | 45a41002464be62e8af2c3e902b7e017a108347b /gkeys/gkeys/__init__.py | |
parent | gkeyldap/actions.py: Add generated default uid to seed data (diff) | |
download | gentoo-keys-147295dbd64a178a918a41341aa12fc14ecd63f8.tar.gz gentoo-keys-147295dbd64a178a918a41341aa12fc14ecd63f8.tar.bz2 gentoo-keys-147295dbd64a178a918a41341aa12fc14ecd63f8.zip |
gkeys: Move Action_Map and other non-operation data to action_map.py
This removes the bloat of the man page data and makes obtaining the data less taxing for non-operational needs.
Update Action_options import change
Add list-key example
Update more actions
Diffstat (limited to 'gkeys/gkeys/__init__.py')
-rw-r--r-- | gkeys/gkeys/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gkeys/gkeys/__init__.py b/gkeys/gkeys/__init__.py index d5a659e..7256297 100644 --- a/gkeys/gkeys/__init__.py +++ b/gkeys/gkeys/__init__.py @@ -5,7 +5,7 @@ from collections import OrderedDict -from gkeys.actions import Action_Map, Available_Actions +from gkeys.action_map import Action_Map, Available_Actions __version__ = 'Git' @@ -24,4 +24,5 @@ the GPG keys used for validation on users and Gentoo's infrastracutre servers. Gentoo Keys is able to verify GPG keys used for Gentoo's release media, such as installation CD's, Live DVD's, packages and other GPG signed documents.''', 'sub-cmds': subdata, + 'authors': ['Brian Dolbec <dolsen@gentoo.org>', 'Pavlos Ratis <dastergon@gentoo.org>'], } |