From 88d8b57221662b42cfcd7490314c2869c4ea9bfe Mon Sep 17 00:00:00 2001 From: Todd Leonhardt Date: Thu, 14 Mar 2019 20:47:22 -0400 Subject: Converted class attributes which aren't intended to be dynamically settable to instance attributes The following are now instance attributes: - allow_cli_args - default_to_shell - quit_on_sigint The following class attribute was deleted due to lack of use: - reserved_words The following instance attribute was deleted due to lack of use: - keywords --- examples/hooks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/hooks.py') diff --git a/examples/hooks.py b/examples/hooks.py index b6f6263e..dd21e58a 100755 --- a/examples/hooks.py +++ b/examples/hooks.py @@ -87,7 +87,7 @@ class CmdLineApp(cmd2.Cmd): func = self.cmd_func(data.statement.command) if func is None: # check if the entered command might be an abbreviation - possible_cmds = [cmd for cmd in self.keywords if cmd.startswith(data.statement.command)] + possible_cmds = [cmd for cmd in self.get_all_commands() if cmd.startswith(data.statement.command)] if len(possible_cmds) == 1: raw = data.statement.raw.replace(data.statement.command, possible_cmds[0], 1) data.statement = self.statement_parser.parse(raw) -- cgit v1.2.1