From 478f3a5a99e0649a52e65db603a850db0fa6817b Mon Sep 17 00:00:00 2001 From: Carson Woods Date: Tue, 16 Jul 2019 14:47:22 -0600 Subject: [PATCH] Fix whitespace issue --- lib/spack/spack/stage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/spack/spack/stage.py b/lib/spack/spack/stage.py index 397ec8cb87f..1cf231b477b 100644 --- a/lib/spack/spack/stage.py +++ b/lib/spack/spack/stage.py @@ -212,7 +212,7 @@ def __init__( if self.name not in Stage.stage_locks: sha1 = hashlib.sha1(self.name.encode('utf-8')).digest() lock_id = prefix_bits(sha1, bit_length(sys.maxsize)) - stage_lock_path = os.path.join(spack.paths.stage_path,'.lock') + stage_lock_path = os.path.join(spack.paths.stage_path, '.lock') Stage.stage_locks[self.name] = spack.util.lock.Lock( stage_lock_path, lock_id, 1)