summaryrefslogtreecommitdiff
path: root/lib/spack/docs/packaging_guide.rst
diff options
context:
space:
mode:
Diffstat (limited to 'lib/spack/docs/packaging_guide.rst')
-rw-r--r--lib/spack/docs/packaging_guide.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/spack/docs/packaging_guide.rst b/lib/spack/docs/packaging_guide.rst
index 52f690c4d6..b1c55de22c 100644
--- a/lib/spack/docs/packaging_guide.rst
+++ b/lib/spack/docs/packaging_guide.rst
@@ -4308,8 +4308,8 @@ follows:
return
# This implementation is lazy and only checks the first candidate
exe_path = candidates[0]
- exe = spack.util.executable.Executable(exe_path)
- output = exe('--version')
+ exe = Executable(exe_path)
+ output = exe('--version', output=str, error=str)
version_str = ... # parse output for version string
return Spec.from_detection(
'foo-package@{0}'.format(version_str)