summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2014-02-07 09:13:10 -0800
committerTodd Gamblin <tgamblin@llnl.gov>2014-02-07 09:13:10 -0800
commit19df908cb6331e494368cd9f669cdc0e51d3d333 (patch)
tree99baba92d44c7dc7c38e33852d1970ed0bcea878 /lib
parentcd70747658bd5f552617b1e29dd1772f77ec2be1 (diff)
downloadspack-19df908cb6331e494368cd9f669cdc0e51d3d333.tar.gz
spack-19df908cb6331e494368cd9f669cdc0e51d3d333.tar.bz2
spack-19df908cb6331e494368cd9f669cdc0e51d3d333.tar.xz
spack-19df908cb6331e494368cd9f669cdc0e51d3d333.zip
Make default spack text non-bold
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/tty.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/tty.py b/lib/spack/spack/tty.py
index 5a2ba92275..df4760df40 100644
--- a/lib/spack/spack/tty.py
+++ b/lib/spack/spack/tty.py
@@ -29,7 +29,7 @@ from spack.color import *
indent = " "
def msg(message, *args):
- cprint("@*b{==>} @*{%s}" % cescape(message))
+ cprint("@*b{==>} %s" % cescape(message))
for arg in args:
print indent + str(arg)