diff options
-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) |