diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2019-06-23 20:38:17 -0400 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2019-06-23 20:38:17 -0400 |
commit | 181cecb217dd73056b72874d225e34528d484de8 (patch) | |
tree | 6780eac90814677ce1fe998521d524373211af7f /cmd2/pyscript_bridge.py | |
parent | f2166d89e313f6f0b24ced45f2b31109a0d11a2d (diff) | |
download | cmd2-git-181cecb217dd73056b72874d225e34528d484de8.tar.gz |
Restored a few attributes to be public
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 0638f1fb..01d283ea 100644 --- a/cmd2/pyscript_bridge.py +++ b/cmd2/pyscript_bridge.py @@ -97,7 +97,7 @@ class PyscriptBridge(object): with redirect_stderr(copy_stderr): stop = self._cmd2_app.onecmd_plus_hooks(command, pyscript_bridge_call=True) finally: - with self._cmd2_app._sigint_protection: + with self._cmd2_app.sigint_protection: self._cmd2_app.stdout = copy_cmd_stdout.inner_stream self.stop = stop or self.stop |