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 3030 * Replaced by default AutoCompleter implementation for all commands using argparse
3131 * Deleted support for old method of calling application commands with `` cmd() `` and `` self ``
3232 * `` 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 ``
3334* Python 2 no longer supported
3435 * `` cmd2 `` now supports Python 3.4+
3536* Known Issues
Original file line number Diff line number Diff line change @@ -1679,7 +1679,7 @@ def onecmd_plus_hooks(self, line):
16791679 import datetime
16801680 stop = False
16811681 try :
1682- statement = self ._complete_statement (self . preparse ( line ) )
1682+ statement = self ._complete_statement (line )
16831683 (stop , statement ) = self .postparsing_precmd (statement )
16841684 if stop :
16851685 return self .postparsing_postcmd (stop )
You can’t perform that action at this time.
0 commit comments