diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2014-01-26 02:31:39 -0800 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2014-02-05 00:17:36 -0800 |
commit | a71c59d4fec409d3950f69f613d7c8cf37393177 (patch) | |
tree | d2b3db7f1ff13afd49f5ae17660b40332825de5f /lib | |
parent | a6b24f85df9c2ef6dac12489c59a34b47d0e0e81 (diff) | |
download | spack-a71c59d4fec409d3950f69f613d7c8cf37393177.tar.gz spack-a71c59d4fec409d3950f69f613d7c8cf37393177.tar.bz2 spack-a71c59d4fec409d3950f69f613d7c8cf37393177.tar.xz spack-a71c59d4fec409d3950f69f613d7c8cf37393177.zip |
Fix Mac OS package icon.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/tty.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/tty.py b/lib/spack/spack/tty.py index 757e4cc602..02cd0364f6 100644 --- a/lib/spack/spack/tty.py +++ b/lib/spack/spack/tty.py @@ -71,7 +71,7 @@ def pkg(message): mac_ver = platform.mac_ver()[0] if mac_ver and Version(mac_ver) >= Version('10.7'): - print u"\U0001F4E6" + indent + print u"\U0001F4E6" + indent, else: cwrite('@*g{[+]} ') print message |