Skip to content

Commit

Permalink
Fixed typo when setting up the fancy formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
bccheung committed Mar 22, 2022
1 parent 9a5ac1c commit d978a6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion balsa/logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def _prep_fancy_formatter():
fmt_string = str(''.join(["\x1b[{colour}m", raw_fmt, "\x1b[0m"]))

debug_formatter = logging.Formatter(fmt_string.format(colour=37)) # Grey colour
subproc_formatter = logging.Formatter(fmt_string.format(color=37)) # Grey colour
subproc_formatter = logging.Formatter(fmt_string.format(colour=37)) # Grey colour
report_formatter = logging.Formatter(fmt_string.format(colour=32)) # Green colour
info_formatter = logging.Formatter(fmt_string.format(colour=0)) # Default colour
tip_formatter = logging.Formatter(fmt_string.format(colour=34)) # Blue colour
Expand Down

0 comments on commit d978a6b

Please sign in to comment.