summaryrefslogtreecommitdiff
path: root/examples/python_scripting.py
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2019-06-25 14:05:20 -0400
committerKevin Van Brunt <kmvanbrunt@gmail.com>2019-06-25 14:05:20 -0400
commit36c310f9311bc9a48428950a9532934ffc3f45f2 (patch)
treebca883bb615f421e7b53e41f915723a76fd818e3 /examples/python_scripting.py
parent87cd9aba00dde219a7b2e5e7d9fdd1c1a73c287a (diff)
downloadcmd2-git-36c310f9311bc9a48428950a9532934ffc3f45f2.tar.gz
Replaced more pexcept uses with perror
Diffstat (limited to 'examples/python_scripting.py')
-rwxr-xr-xexamples/python_scripting.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/python_scripting.py b/examples/python_scripting.py
index f9461fa5..0cbfddff 100755
--- a/examples/python_scripting.py
+++ b/examples/python_scripting.py
@@ -56,7 +56,7 @@ class CmdLineApp(cmd2.Cmd):
"""
# Expect 1 argument, the directory to change to
if not arglist or len(arglist) != 1:
- self.pexcept("cd requires exactly 1 argument:", traceback_war=False)
+ self.perror("cd requires exactly 1 argument:")
self.do_help('cd')
self.last_result = cmd2.CommandResult('', 'Bad arguments')
return
@@ -83,7 +83,7 @@ class CmdLineApp(cmd2.Cmd):
data = path
if err:
- self.pexcept(err, traceback_war=False)
+ self.perror(err)
self.last_result = cmd2.CommandResult(out, err, data)
# Enable tab completion for cd command
@@ -98,7 +98,7 @@ class CmdLineApp(cmd2.Cmd):
"""List contents of current directory."""
# No arguments for this command
if unknown:
- self.pexcept("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 = cmd2.CommandResult('', 'Bad arguments')
return