File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 30
30
* Replaced by default AutoCompleter implementation for all commands using argparse
31
31
* Deleted support for old method of calling application commands with `` cmd() `` and `` self ``
32
32
* `` cmd2.redirector `` is no longer supported. Output redirection can only be done with '>' or '>>'
33
+ * Deleted `` postparse() `` hook since it was redundant with `` postparsing_precmd ``
33
34
* Python 2 no longer supported
34
35
* `` cmd2 `` now supports Python 3.4+
35
36
* Known Issues
Original file line number Diff line number Diff line change @@ -1679,7 +1679,7 @@ def onecmd_plus_hooks(self, line):
1679
1679
import datetime
1680
1680
stop = False
1681
1681
try :
1682
- statement = self ._complete_statement (self . preparse ( line ) )
1682
+ statement = self ._complete_statement (line )
1683
1683
(stop , statement ) = self .postparsing_precmd (statement )
1684
1684
if stop :
1685
1685
return self .postparsing_postcmd (stop )
You can’t perform that action at this time.
0 commit comments