Change string formatting to avoid multiline f string
This commit is contained in:
parent
274ac74122
commit
c1ecf4fad7
@ -2710,8 +2710,8 @@ def setup(
|
|||||||
if env:
|
if env:
|
||||||
dev_specs = tuple(
|
dev_specs = tuple(
|
||||||
spack.spec.Spec(info["spec"]).constrained(
|
spack.spec.Spec(info["spec"]).constrained(
|
||||||
"dev_path="
|
'dev_path="%s"'
|
||||||
f'"{spack.util.path.canonicalize_path(info["path"], default_wd=env.path)}"'
|
% spack.util.path.canonicalize_path(info["path"], default_wd=env.path)
|
||||||
)
|
)
|
||||||
for name, info in env.dev_specs.items()
|
for name, info in env.dev_specs.items()
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user