diff options
author | kotfu <kotfu@kotfu.net> | 2018-04-25 21:49:20 -0600 |
---|---|---|
committer | kotfu <kotfu@kotfu.net> | 2018-04-25 21:49:20 -0600 |
commit | a50c5683fd8aa499fb5dd4133198fe27c99c969c (patch) | |
tree | ddec7153d911ee8b79a356b131e5006f78141d5b /cmd2/cmd2.py | |
parent | 08c5121cb314b45859c1e857e9cde2485a9de4fa (diff) | |
parent | a343ed182e07b89165db7b6a059ab79f9d6a0b15 (diff) | |
download | cmd2-git-a50c5683fd8aa499fb5dd4133198fe27c99c969c.tar.gz |
Merge branch 'ply' of github.com:python-cmd2/cmd2 into ply
# Conflicts:
# SHLEX_TODO.txt
Diffstat (limited to 'cmd2/cmd2.py')
-rwxr-xr-x | cmd2/cmd2.py | 2 |
1 files changed, 1 insertions, 1 deletions
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? |