From 9c69e1dc9eec4fbd341f939ae9b95438e1d7dc03 Mon Sep 17 00:00:00 2001 From: "Adam J. Stewart" Date: Mon, 24 Jan 2022 03:01:28 -0600 Subject: [PATCH] Resource stage: no space before colon (#28560) --- lib/spack/spack/stage.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/spack/spack/stage.py b/lib/spack/spack/stage.py index df1f6761ace..0f22dbf274f 100644 --- a/lib/spack/spack/stage.py +++ b/lib/spack/spack/stage.py @@ -694,8 +694,8 @@ def _add_to_root_stage(self): 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 ))