diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-06-27 08:42:30 -0700 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-06-27 08:42:30 -0700 |
commit | 28f080b2ea338b72fbff2992ba4745c6456f651f (patch) | |
tree | 3fc4332a8a8c1c58d69e1092ea09e278b4ef4372 | |
parent | 926c2cf078da9740838663b2651c372a5340eb5f (diff) | |
download | cmd2-git-28f080b2ea338b72fbff2992ba4745c6456f651f.tar.gz |
Made table more readable when colored module is installed
-rwxr-xr-x | examples/table_display.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/table_display.py b/examples/table_display.py index 9af15175..c2aff0c1 100755 --- a/examples/table_display.py +++ b/examples/table_display.py @@ -20,7 +20,7 @@ import tableformatter as tf try: from colored import bg BACK_PRI = bg(4) - BACK_ALT = bg(2) + BACK_ALT = bg(22) except ImportError: try: from colorama import Back |