diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-05-27 20:01:54 -0400 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-05-27 20:01:54 -0400 |
commit | 12cc83b5051e0683e499e372cc66708cbcd3c835 (patch) | |
tree | 4c44834ce7befedb9b90bfea2d37f38797278899 /cmd2/cmd2.py | |
parent | f9302ec170b48de9bbb27c0f4d4609dd260746de (diff) | |
download | cmd2-git-12cc83b5051e0683e499e372cc66708cbcd3c835.tar.gz |
Reverted preparse behavior to where it was (i.e. currently unused)
Diffstat (limited to 'cmd2/cmd2.py')
-rw-r--r-- | cmd2/cmd2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/cmd2.py b/cmd2/cmd2.py index 05902a3c..ce19cda8 100644 --- a/cmd2/cmd2.py +++ b/cmd2/cmd2.py @@ -1679,7 +1679,7 @@ class Cmd(cmd.Cmd): import datetime stop = False try: - statement = self._complete_statement(self.preparse(line)) + statement = self._complete_statement(line) (stop, statement) = self.postparsing_precmd(statement) if stop: return self.postparsing_postcmd(stop) |