summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2014-04-14 13:53:40 -0700
committerTodd Gamblin <tgamblin@llnl.gov>2014-04-14 13:53:40 -0700
commit9fa99030eb1958b5bf2e1693443556438f363c30 (patch)
tree79833de6b8fadfdd653c0b54ed162d39a760d540 /lib
parent1f9dfeb9b52d8be22d0d14a3cf88dd2442d6cdbd (diff)
downloadspack-9fa99030eb1958b5bf2e1693443556438f363c30.tar.gz
spack-9fa99030eb1958b5bf2e1693443556438f363c30.tar.bz2
spack-9fa99030eb1958b5bf2e1693443556438f363c30.tar.xz
spack-9fa99030eb1958b5bf2e1693443556438f363c30.zip
Print compiler correctly.
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/cmd/find.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/cmd/find.py b/lib/spack/spack/cmd/find.py
index b354833751..b8448641f3 100644
--- a/lib/spack/spack/cmd/find.py
+++ b/lib/spack/spack/cmd/find.py
@@ -78,7 +78,7 @@ def find(parser, args):
for architecture in index:
tty.hline(architecture, char='=', color=spack.spec.architecture_color)
for compiler in index[architecture]:
- tty.hline(architecture, char='-', color=spack.spec.compiler_color)
+ tty.hline(compiler, char='-', color=spack.spec.compiler_color)
specs = index[architecture][compiler]
specs.sort()