diff options
-rw-r--r-- | SHLEX_TODO.txt | 1 | ||||
-rwxr-xr-x | cmd2/cmd2.py | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/SHLEX_TODO.txt b/SHLEX_TODO.txt index 371a6a71..9b75328f 100644 --- a/SHLEX_TODO.txt +++ b/SHLEX_TODO.txt @@ -4,7 +4,6 @@ Notes on conversion from pyparsing to shlex taking place in the ply branch Todo List: - case sensitive flag - refactor Cmd2.parseline() to use StatementParser.parse() -- get rid of legalChars - delete test_shlexparsing.py once I have all this data captured elsewhere - we now ignore self.identchars, which breaks backwards compatibility with the cmd in the standard library diff --git a/cmd2/cmd2.py b/cmd2/cmd2.py index 41f46d5c..17a6917c 100755 --- a/cmd2/cmd2.py +++ b/cmd2/cmd2.py @@ -635,7 +635,7 @@ class Cmd(cmd.Cmd): redirector = '>' # for sending output to file shortcuts = {'?': 'help', '!': 'shell', '@': 'load', '@@': '_relative_load'} aliases = dict() - terminators = [';'] # make sure your terminators are not in legalChars! + terminators = [';'] # Attributes which are NOT dynamically settable at runtime allow_cli_args = True # Should arguments passed on the command-line be processed as commands? |