diff options
author | Harmen Stoppels <harmenstoppels@gmail.com> | 2023-03-14 14:18:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-14 14:18:05 +0100 |
commit | 1691b7caaca81d02fbd47ba082a81b1af9dcb246 (patch) | |
tree | e5584bacd89370a578710c9e6c91c80690f58afa /lib | |
parent | 4f848f9200af1083b96304bb869a6b2f9cf2c920 (diff) | |
download | spack-1691b7caaca81d02fbd47ba082a81b1af9dcb246.tar.gz spack-1691b7caaca81d02fbd47ba082a81b1af9dcb246.tar.bz2 spack-1691b7caaca81d02fbd47ba082a81b1af9dcb246.tar.xz spack-1691b7caaca81d02fbd47ba082a81b1af9dcb246.zip |
Fix typo affecting Gitlab CI (#36103)
Introduced in #35944
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/ci.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/spack/spack/ci.py b/lib/spack/spack/ci.py index 694435f66f..004dc52a4e 100644 --- a/lib/spack/spack/ci.py +++ b/lib/spack/spack/ci.py @@ -770,9 +770,9 @@ def generate_gitlab_ci_yaml( dependent_depth = int(dependent_depth) except (TypeError, ValueError): tty.warn( - "Unrecognized value ({0}) ".format(dependent_depth), - "provide forSPACK_PRUNE_UNTOUCHED_DEPENDENT_DEPTH, ", - "ignoring it.", + f"Unrecognized value ({dependent_depth}) " + "provided for SPACK_PRUNE_UNTOUCHED_DEPENDENT_DEPTH, " + "ignoring it." ) dependent_depth = None |