We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 177951c commit 65ba274Copy full SHA for 65ba274
CHANGELOG.md
@@ -1,3 +1,8 @@
1
+## 2.4.1 (TBD, 2022)
2
+* Bug Fixes
3
+ * Fixed value for `ansi.Bg.YELLOW`.
4
+ * Fixed unit tests for `ansi.allow_style`.
5
+
6
## 2.4.0 (February 22, 2022)
7
* Bug Fixes
8
* Fixed issue in `ansi.async_alert_str()` which would raise `IndexError` if prompt was blank.
cmd2/ansi.py
@@ -331,7 +331,7 @@ class Bg(BgColor, Enum):
331
BLACK = 40
332
RED = 41
333
GREEN = 42
334
- YELLOW = 44
+ YELLOW = 43
335
BLUE = 44
336
MAGENTA = 45
337
CYAN = 46
0 commit comments