summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2022-01-24 03:01:28 -0600
committerMassimiliano Culpo <massimiliano.culpo@gmail.com>2022-04-14 11:08:17 +0200
commite0be0d86836a02abad76e3abff5553b67b96a35a (patch)
treef6dace40540d759377583c6e3b208e0d78aad678
parent1179623002eb932776b69bfd6c50c5de600bb6d6 (diff)
downloadspack-e0be0d86836a02abad76e3abff5553b67b96a35a.tar.gz
spack-e0be0d86836a02abad76e3abff5553b67b96a35a.tar.bz2
spack-e0be0d86836a02abad76e3abff5553b67b96a35a.tar.xz
spack-e0be0d86836a02abad76e3abff5553b67b96a35a.zip
Resource stage: no space before colon (#28560)
-rw-r--r--lib/spack/spack/stage.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/spack/spack/stage.py b/lib/spack/spack/stage.py
index df1f6761ac..0f22dbf274 100644
--- a/lib/spack/spack/stage.py
+++ b/lib/spack/spack/stage.py
@@ -694,8 +694,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
))