diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2023-01-16 02:09:40 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-16 10:09:40 +0100 |
commit | 5f4b736006472dba95e41f0669022dc881786f50 (patch) | |
tree | 45ac09427013396f4d9a92d1cd2fb7db33e8ee23 /lib | |
parent | c7d1746064acc2c2bdd73da3eff00ed1a94b0f39 (diff) | |
download | spack-5f4b736006472dba95e41f0669022dc881786f50.tar.gz spack-5f4b736006472dba95e41f0669022dc881786f50.tar.bz2 spack-5f4b736006472dba95e41f0669022dc881786f50.tar.xz spack-5f4b736006472dba95e41f0669022dc881786f50.zip |
Drop Python 3.6 again (#34442)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/binary_distribution.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/binary_distribution.py b/lib/spack/spack/binary_distribution.py index 8ae7207768..ece92dc148 100644 --- a/lib/spack/spack/binary_distribution.py +++ b/lib/spack/spack/binary_distribution.py @@ -1050,7 +1050,7 @@ def generate_package_index(cache_prefix, concurrency=32): try: file_list, read_fn = _spec_files_from_cache(cache_prefix) except ListMirrorSpecsError as err: - tty.error("Unabled to generate package index, {0}".format(err)) + tty.error("Unable to generate package index, {0}".format(err)) return tty.debug("Retrieving spec descriptor files from {0} to build index".format(cache_prefix)) |