index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Zach Osman <zosman@gmu.edu> | 2021-04-04 15:46:02 -0400 |
---|---|---|
committer | Zach Osman <zosman@gmu.edu> | 2021-04-04 15:46:02 -0400 |
commit | 9b2af4eb4cbcbb9f32aecbe43d2987a796864048 (patch) | |
tree | bc1b2413d62414660e1bd68277475ee807d20562 | |
parent | 45e61dd83e001a1a8d5d72531a8b3b23e9747525 (diff) |
-rw-r--r-- | archinstall/lib/output.py | 2 |
diff --git a/archinstall/lib/output.py b/archinstall/lib/output.py index dfc6959d..6b184b4b 100644 --- a/archinstall/lib/output.py +++ b/archinstall/lib/output.py @@ -88,7 +88,7 @@ def log(*args, **kwargs): # Attempt to colorize the output if supported # Insert default colors and override with **kwargs if supports_color(): - kwargs = {'bg' : 'black', 'fg': 'white', **kwargs} + kwargs = {'fg': 'white', **kwargs} string = stylize_output(string, **kwargs) # If a logfile is defined in storage, |