diff options
author | David Robillard <d@drobilla.net> | 2018-09-15 08:47:23 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-09-15 12:45:14 +0200 |
commit | 433989fba5efb8720c9e813874b9f99a83c101b9 (patch) | |
tree | be2cf7adccd7d95ef88b23ae1a6b3b5aeb68a5cd | |
parent | 6ca2ebb288cdb776d126866a1d4f092f9d6b00a0 (diff) | |
download | autowaf-433989fba5efb8720c9e813874b9f99a83c101b9.tar.gz autowaf-433989fba5efb8720c9e813874b9f99a83c101b9.tar.bz2 autowaf-433989fba5efb8720c9e813874b9f99a83c101b9.zip |
Beautify configuration summary output
-rw-r--r-- | extras/autowaf.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extras/autowaf.py b/extras/autowaf.py index 6b8385e..d6b1219 100644 --- a/extras/autowaf.py +++ b/extras/autowaf.py @@ -450,8 +450,8 @@ def display_msg(conf, msg, status = None, color = None): elif type(status) == bool and not status or status == "False": color = 'YELLOW' status = 'no' - Logs.pprint('NORMAL', ' %s' % msg.ljust(conf.line_just - 2), sep='') - Logs.pprint('NORMAL', ":", sep='') + Logs.pprint('BOLD', '%s' % msg.ljust(conf.line_just), sep='') + Logs.pprint('BOLD', ":", sep='') Logs.pprint(color, status) def display_msgs(conf, msgs): |