Skip to content
Snippets Groups Projects
Commit 6dab133d authored by Todd Gamblin's avatar Todd Gamblin
Browse files

Same package add icon on mac and linux.

parent d49c9818
No related branches found
No related tags found
No related merge requests found
...@@ -1171,12 +1171,8 @@ def validate_package_url(url_string): ...@@ -1171,12 +1171,8 @@ def validate_package_url(url_string):
def print_pkg(message): def print_pkg(message):
"""Outputs a message with a package icon.""" """Outputs a message with a package icon."""
mac_ver = py_platform.mac_ver()[0] from llnl.util.tty.color import cwrite
if mac_ver and Version(mac_ver) >= Version('10.7'): cwrite('@*g{[+]} ')
print u"\U0001F4E6" + tty.indent,
else:
from llnl.util.tty.color import cwrite
cwrite('@*g{[+]} ')
print message print message
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment