diff options
-rw-r--r-- | CHANGELOG.md | 5 | ||||
-rw-r--r-- | cmd2/ansi.py | 2 |
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 |