Skip to content

Commit 65ba274

Browse files
committed
Fixed value for ansi.Bg.YELLOW
1 parent 177951c commit 65ba274

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
16
## 2.4.0 (February 22, 2022)
27
* Bug Fixes
38
* Fixed issue in `ansi.async_alert_str()` which would raise `IndexError` if prompt was blank.

cmd2/ansi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ class Bg(BgColor, Enum):
331331
BLACK = 40
332332
RED = 41
333333
GREEN = 42
334-
YELLOW = 44
334+
YELLOW = 43
335335
BLUE = 44
336336
MAGENTA = 45
337337
CYAN = 46

0 commit comments

Comments
 (0)