Fixed find -lp command (coloring was broken) (#2820)
This commit is contained in:
parent
5c4d2627ff
commit
677623962e
@ -219,9 +219,8 @@ def display_specs(specs, **kwargs):
|
|||||||
format = " %%-%ds%%s" % width
|
format = " %%-%ds%%s" % width
|
||||||
|
|
||||||
for abbrv, spec in zip(abbreviated, specs):
|
for abbrv, spec in zip(abbreviated, specs):
|
||||||
if hashes:
|
prefix = gray_hash(spec, hlen) if hashes else ''
|
||||||
print(gray_hash(spec, hlen), )
|
print prefix + (format % (abbrv, spec.prefix))
|
||||||
print(format % (abbrv, spec.prefix))
|
|
||||||
|
|
||||||
elif mode == 'deps':
|
elif mode == 'deps':
|
||||||
for spec in specs:
|
for spec in specs:
|
||||||
|
Loading…
Reference in New Issue
Block a user