diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-06-07 17:02:47 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-06-07 17:02:47 -0400 |
commit | 99856663b54b73d7c9f758d2830d48f879c0bc07 (patch) | |
tree | 155bd1e2e5378cbf8bdb1232d3d6b93de598f0d7 /cmd2/pyscript_bridge.py | |
parent | 0b0ccc5b6e00258d9fe7e98f3a2dd1a1081ac457 (diff) | |
download | cmd2-git-99856663b54b73d7c9f758d2830d48f879c0bc07.tar.gz |
Updated change log and comment
Diffstat (limited to 'cmd2/pyscript_bridge.py')
-rw-r--r-- | cmd2/pyscript_bridge.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/pyscript_bridge.py b/cmd2/pyscript_bridge.py index 944c7eae..e5633173 100644 --- a/cmd2/pyscript_bridge.py +++ b/cmd2/pyscript_bridge.py @@ -24,7 +24,7 @@ class CommandResult(namedtuple_with_defaults('CommandResult', ['stdout', 'stderr ---------------------- stdout: str - output captured from stdout while this command is executing stderr: str - output captured from stderr while this command is executing. None if no error captured. - stop: bool - return value of the command's corresponding do_* function + stop: bool - return value of onecmd_plus_hooks after it runs the given command line. data - possible data populated by the command. Any combination of these fields can be used when developing a scripting API for a given command. |