commit: 17e3e3ad8ebb4e1590ebe801bf97af29dd066fba
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 2 21:39:16 2018 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sat Jul 7 05:22:11 2018 +0000
URL: https://gitweb.gentoo.org/proj/gentoo-keys.git/commit/?id=17e3e3ad
gkeysgpg/cli.py: Fix doctring typos
Signed-off-by: Brian Dolbec <dolsen <AT> gentoo.org>
gkeys/gkeysgpg/cli.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gkeys/gkeysgpg/cli.py b/gkeys/gkeysgpg/cli.py
index cdc984c..8d591f0 100644
--- a/gkeys/gkeysgpg/cli.py
+++ b/gkeys/gkeysgpg/cli.py
@@ -56,7 +56,7 @@ class Main(CliBase):
def __call__(self, args=None):
"""Main class call function
- @param args: Optional list of argumanets to parse and action to run
+ @param args: Optional list of arguments to parse and action to run
Defaults to sys.argv[1:]
"""
if args:
@@ -72,7 +72,7 @@ class Main(CliBase):
def run(self, args):
'''Run the gpg command option
- @param args: list of argumanets to parse
+ @param args: list of arguments to parse
'''
# establish our actions instance
self.actions = self.cli_config['Actions'](self.config,
self.output_results, self.logger)