diff options
| author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-06-25 14:05:20 -0400 |
|---|---|---|
| committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-06-25 14:05:20 -0400 |
| commit | 36c310f9311bc9a48428950a9532934ffc3f45f2 (patch) | |
| tree | bca883bb615f421e7b53e41f915723a76fd818e3 /docs | |
| parent | 87cd9aba00dde219a7b2e5e7d9fdd1c1a73c287a (diff) | |
| download | cmd2-git-36c310f9311bc9a48428950a9532934ffc3f45f2.tar.gz | |
Replaced more pexcept uses with perror
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/argument_processing.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/argument_processing.rst b/docs/argument_processing.rst index 599e4cf0..a1fc107b 100644 --- a/docs/argument_processing.rst +++ b/docs/argument_processing.rst @@ -265,7 +265,7 @@ Here's what it looks like:: """List contents of current directory.""" # No arguments for this command if unknown: - self.perror("dir does not take any positional arguments:", traceback_war=False) + self.perror("dir does not take any positional arguments:") self.do_help('dir') self.last_result = CommandResult('', 'Bad arguments') return |
