diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/cmd/info.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/spack/spack/cmd/info.py b/lib/spack/spack/cmd/info.py index 97417eed3a..ce69d98dbb 100644 --- a/lib/spack/spack/cmd/info.py +++ b/lib/spack/spack/cmd/info.py @@ -145,10 +145,8 @@ class VariantFormatter(object): name = textwrap.wrap( "{0} [{1}]".format(k, self.default(v)), width=self.column_widths[0] ) - if len(w) == 1: - w = w[0] - if w == spack.spec.Spec(): - w = "--" + if all(spec == spack.spec.Spec() for spec in w): + w = "--" when = textwrap.wrap(str(w), width=self.column_widths[1]) allowed = v.allowed_values.replace("True, False", "on, off") allowed = textwrap.wrap(allowed, width=self.column_widths[2]) |