Fix broken calls into colify.
This commit is contained in:
parent
79c5dd0952
commit
1e51daab08
1 changed files with 2 additions and 2 deletions
|
@ -26,7 +26,7 @@
|
||||||
import argparse
|
import argparse
|
||||||
from StringIO import StringIO
|
from StringIO import StringIO
|
||||||
|
|
||||||
from llnl.util.tty.colify import colify
|
from llnl.util.tty.colify import colify, get_terminal_size
|
||||||
from llnl.util.tty.color import *
|
from llnl.util.tty.color import *
|
||||||
|
|
||||||
import spack
|
import spack
|
||||||
|
@ -51,7 +51,7 @@ def setup_parser(subparser):
|
||||||
# TODO: move this and colify to tty.
|
# TODO: move this and colify to tty.
|
||||||
def hline(label, char, color=''):
|
def hline(label, char, color=''):
|
||||||
max_width = 64
|
max_width = 64
|
||||||
cols, rows = spack.colify.get_terminal_size()
|
cols, rows = get_terminal_size()
|
||||||
if not cols:
|
if not cols:
|
||||||
cols = max_width
|
cols = max_width
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue