diff options
author | David Robillard <d@drobilla.net> | 2018-09-15 08:53:42 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-09-15 08:53:42 +0200 |
commit | 6bdd956ebb486070aef76bce00772c785e91a4e2 (patch) | |
tree | 2b95f3f5ec8068c6a7f685c089075acca427e796 | |
parent | 444365a7437ac61f5be47d305f202e9d2c0f6446 (diff) | |
parent | 8239fedfd133916f0ac26bd85ff524afca243ddb (diff) | |
download | pugl-6bdd956ebb486070aef76bce00772c785e91a4e2.tar.gz pugl-6bdd956ebb486070aef76bce00772c785e91a4e2.tar.bz2 pugl-6bdd956ebb486070aef76bce00772c785e91a4e2.zip |
Merge commit '8239fedfd133916f0ac26bd85ff524afca243ddb'
-rw-r--r-- | waflib/extras/autowaf.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/waflib/extras/autowaf.py b/waflib/extras/autowaf.py index 6b8385e..d6b1219 100644 --- a/waflib/extras/autowaf.py +++ b/waflib/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): |