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/cli.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/cli.py')
-rw-r--r-- | gkeys/gkeys/cli.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gkeys/gkeys/cli.py b/gkeys/gkeys/cli.py index f266f6c..8ec45f9 100644 --- a/gkeys/gkeys/cli.py +++ b/gkeys/gkeys/cli.py @@ -17,7 +17,8 @@ import os import sys from gkeys.base import CliBase -from gkeys.actions import Actions, Available_Actions, Action_Map +from gkeys.actions import Actions +from gkeys.action_map import Available_Actions, Action_Map from gkeys.config import GKeysConfig |