Gentoo Archives: gentoo-commits

From: Pavlos Ratis <dastergon@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gentoo-keys:master commit in: gkeyldap/, gkeys/
Date: Sat, 01 Mar 2014 17:50:03
Message-Id: 1393679573.92fc2f1603d88bbda26fe228137e02854c6c25fe.dastergon@gentoo
1 commit: 92fc2f1603d88bbda26fe228137e02854c6c25fe
2 Author: Pavlos Ratis <dastergon <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 1 13:12:53 2014 +0000
4 Commit: Pavlos Ratis <dastergon <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 1 13:12:53 2014 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=92fc2f16
7
8 fix typo
9
10 ---
11 gkeyldap/actions.py | 2 +-
12 gkeyldap/cli.py | 4 ++--
13 gkeys/actions.py | 2 +-
14 gkeys/cli.py | 4 ++--
15 4 files changed, 6 insertions(+), 6 deletions(-)
16
17 diff --git a/gkeyldap/actions.py b/gkeyldap/actions.py
18 index 2c65a90..5b33600 100644
19 --- a/gkeyldap/actions.py
20 +++ b/gkeyldap/actions.py
21 @@ -18,7 +18,7 @@ from gkeys.seed import Seeds
22 from gkeyldap.search import (LdapSearch, UID, gkey2ldap_map, gkey2SEARCH)
23
24
25 -Avialable_Actions = ['ldapsearch', 'updateseeds']
26 +Available_Actions = ['ldapsearch', 'updateseeds']
27
28
29 def get_key_ids(key, info):
30
31 diff --git a/gkeyldap/cli.py b/gkeyldap/cli.py
32 index 097cfc2..1eba841 100644
33 --- a/gkeyldap/cli.py
34 +++ b/gkeyldap/cli.py
35 @@ -15,7 +15,7 @@ from gkeys import seed
36
37 from gkeys.config import GKeysConfig
38 from gkeyldap import search
39 -from gkeyldap.actions import Actions, Avialable_Actions
40 +from gkeyldap.actions import Actions, Available_Actions
41 logger = log.logger
42
43
44 @@ -49,7 +49,7 @@ class Main(object):
45 @returns argparse.Namespace object
46 '''
47 #logger.debug('MAIN: parse_args; args: %s' % args)
48 - actions = Avialable_Actions
49 + actions = Available_Actions
50 parser = argparse.ArgumentParser(
51 prog='gkeys',
52 description='Gentoo-keys manager program',
53
54 diff --git a/gkeys/actions.py b/gkeys/actions.py
55 index 2e2b1b7..25013b3 100644
56 --- a/gkeys/actions.py
57 +++ b/gkeys/actions.py
58 @@ -20,7 +20,7 @@ from gkeys.lib import GkeysGPG
59 from gkeys.seed import Seeds
60
61
62 -Avialable_Actions = ['listseed', 'addseed', 'removeseed', 'moveseed',
63 +Available_Actions = ['listseed', 'addseed', 'removeseed', 'moveseed',
64 'listseedfiles', 'listkey', 'addkey', 'removekey', 'movekey',
65 'installed']
66
67
68 diff --git a/gkeys/cli.py b/gkeys/cli.py
69 index 46344f9..f688756 100644
70 --- a/gkeys/cli.py
71 +++ b/gkeys/cli.py
72 @@ -24,7 +24,7 @@ from gkeys import seed
73 from gkeys import lib
74
75 from gkeys.config import GKeysConfig
76 -from gkeys.actions import Actions, Avialable_Actions
77 +from gkeys.actions import Actions, Available_Actions
78
79
80
81 @@ -59,7 +59,7 @@ class Main(object):
82 @returns argparse.Namespace object
83 '''
84 #logger.debug('MAIN: parse_args; args: %s' % args)
85 - actions = Avialable_Actions
86 + actions = Available_Actions
87 parser = argparse.ArgumentParser(
88 prog='gkeys',
89 description='Gentoo-keys manager program',