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-ldap | |
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-ldap')
-rw-r--r-- | gkeys-ldap/gkeyldap/cli.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gkeys-ldap/gkeyldap/cli.py b/gkeys-ldap/gkeyldap/cli.py index d0f57cf..0bca7c7 100644 --- a/gkeys-ldap/gkeyldap/cli.py +++ b/gkeys-ldap/gkeyldap/cli.py @@ -9,8 +9,7 @@ import sys from gkeys.base import CliBase from gkeys.config import GKeysConfig -from gkeyldap.actions import (Actions, Available_Actions, Action_Options, - Action_Map) +from gkeyldap.actions import (Actions, Available_Actions, Action_Map) class Main(CliBase): @@ -32,7 +31,6 @@ class Main(CliBase): self.cli_config = { 'Actions': Actions, 'Available_Actions': Available_Actions, - 'Action_Options': Action_Options, 'Action_Map': Action_Map, 'prog': 'gkey-ldap', 'description': 'Gentoo-keys LDAP interface and seed file generator program', |