diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2022-01-24 03:01:28 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-24 10:01:28 +0100 |
commit | 947c270446322e8e543adc62f476f99f212b9f8f (patch) | |
tree | 7e2ee5d65218b21d451955a641c43152d12e238c | |
parent | 1c12e964acb5782085444b90a955c6369cc9f315 (diff) | |
download | spack-947c270446322e8e543adc62f476f99f212b9f8f.tar.gz spack-947c270446322e8e543adc62f476f99f212b9f8f.tar.bz2 spack-947c270446322e8e543adc62f476f99f212b9f8f.tar.xz spack-947c270446322e8e543adc62f476f99f212b9f8f.zip |
Resource stage: no space before colon (#28560)
-rw-r--r-- | lib/spack/spack/stage.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/spack/spack/stage.py b/lib/spack/spack/stage.py index a70614d6ea..2db705f8fa 100644 --- a/lib/spack/spack/stage.py +++ b/lib/spack/spack/stage.py @@ -704,8 +704,8 @@ class ResourceStage(Stage): source_path = os.path.join(self.source_path, key) if not os.path.exists(destination_path): - tty.info('Moving resource stage\n\tsource : ' - '{stage}\n\tdestination : {destination}'.format( + tty.info('Moving resource stage\n\tsource: ' + '{stage}\n\tdestination: {destination}'.format( stage=source_path, destination=destination_path )) |