Fix whitespace issue

This commit is contained in:
Carson Woods
2019-07-16 14:47:22 -06:00
parent 02afb30990
commit 478f3a5a99

View File

@@ -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)