summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2021-04-30 12:41:02 -0400
committerKevin Van Brunt <kmvanbrunt@gmail.com>2021-04-30 13:12:23 -0400
commit79bf87d1e333ea5fe0dfeb61c707eb9bddfd0255 (patch)
tree1e04c689b17f752732c67a10bcc76cb4cf4bee1a /CHANGELOG.md
parent37d415b4bbfd6efd383a20062df68f627451ccf7 (diff)
downloadcmd2-git-79bf87d1e333ea5fe0dfeb61c707eb9bddfd0255.tar.gz
Removed cmd2.Cmd.quit_on_sigint.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 92501fc1..3e6ca9cc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -30,6 +30,7 @@
and just opens an interactive Python shell.
* Changed default behavior of `runcmds_plus_hooks()` to not stop when Ctrl-C is pressed and instead
run the next command in its list.
+ * Removed `cmd2.Cmd.quit_on_sigint` flag, which when `True`, quit the application when Ctrl-C was pressed at the prompt.
* Enhancements
* Added support for custom tab completion and up-arrow input history to `cmd2.Cmd2.read_input`.
See [read_input.py](https://github.com/python-cmd2/cmd2/blob/master/examples/read_input.py)