diff options
author | Brian Dolbec <dolsen@gentoo.org> | 2018-07-02 14:39:16 -0700 |
---|---|---|
committer | Brian Dolbec <dolsen@gentoo.org> | 2018-07-06 22:22:11 -0700 |
commit | 17e3e3ad8ebb4e1590ebe801bf97af29dd066fba (patch) | |
tree | b3f45a8231c084665a17a62208bb685a1d726fc7 | |
parent | gkeys/actions/py: Move the py_input & _unicode import to __init__.py (diff) | |
download | gentoo-keys-17e3e3ad8ebb4e1590ebe801bf97af29dd066fba.tar.gz gentoo-keys-17e3e3ad8ebb4e1590ebe801bf97af29dd066fba.tar.bz2 gentoo-keys-17e3e3ad8ebb4e1590ebe801bf97af29dd066fba.zip |
gkeysgpg/cli.py: Fix doctring typos
Signed-off-by: Brian Dolbec <dolsen@gentoo.org>
-rw-r--r-- | gkeys/gkeysgpg/cli.py | 4 |
1 files 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) |