summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2022-04-13 14:18:04 -0400
committerKevin Van Brunt <kmvanbrunt@gmail.com>2022-04-13 14:37:50 -0400
commit65ba274872c1f1580cf443f1b7ca460aaa7c403e (patch)
treeaa5c0adebeb787f7178a18f317aaef041b2fd414
parent177951c5fe5c1e5b10d1ad6c4484a705ff2aa4d7 (diff)
downloadcmd2-git-65ba274872c1f1580cf443f1b7ca460aaa7c403e.tar.gz
Fixed value for ansi.Bg.YELLOW
-rw-r--r--CHANGELOG.md5
-rw-r--r--cmd2/ansi.py2
2 files changed, 6 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e12dee56..877e7ef9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+## 2.4.1 (TBD, 2022)
+* Bug Fixes
+ * Fixed value for `ansi.Bg.YELLOW`.
+ * Fixed unit tests for `ansi.allow_style`.
+
## 2.4.0 (February 22, 2022)
* Bug Fixes
* Fixed issue in `ansi.async_alert_str()` which would raise `IndexError` if prompt was blank.
diff --git a/cmd2/ansi.py b/cmd2/ansi.py
index d66c3efc..576689da 100644
--- a/cmd2/ansi.py
+++ b/cmd2/ansi.py
@@ -331,7 +331,7 @@ class Bg(BgColor, Enum):
BLACK = 40
RED = 41
GREEN = 42
- YELLOW = 44
+ YELLOW = 43
BLUE = 44
MAGENTA = 45
CYAN = 46