summaryrefslogtreecommitdiffstats
path: root/extras/autowaf.py
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-09-15 08:47:23 +0200
committerDavid Robillard <d@drobilla.net>2018-09-15 12:45:14 +0200
commit433989fba5efb8720c9e813874b9f99a83c101b9 (patch)
treebe2cf7adccd7d95ef88b23ae1a6b3b5aeb68a5cd /extras/autowaf.py
parent6ca2ebb288cdb776d126866a1d4f092f9d6b00a0 (diff)
downloadautowaf-433989fba5efb8720c9e813874b9f99a83c101b9.tar.gz
autowaf-433989fba5efb8720c9e813874b9f99a83c101b9.tar.bz2
autowaf-433989fba5efb8720c9e813874b9f99a83c101b9.zip
Beautify configuration summary output
Diffstat (limited to 'extras/autowaf.py')
-rw-r--r--extras/autowaf.py4
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):