From f0c0cd5c3f5ab649637d9418bf047f646fd8a791 Mon Sep 17 00:00:00 2001 From: "Adam J. Stewart" Date: Tue, 11 Aug 2020 02:55:44 -0500 Subject: Fix typo in spack external debug msg (#17982) --- lib/spack/docs/packaging_guide.rst | 4 ++-- lib/spack/spack/cmd/external.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'lib') 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) diff --git a/lib/spack/spack/cmd/external.py b/lib/spack/spack/cmd/external.py index 170b5b0395..5dcd6ebbd1 100644 --- a/lib/spack/spack/cmd/external.py +++ b/lib/spack/spack/cmd/external.py @@ -260,7 +260,7 @@ def _get_external_packages(packages_to_check, system_path_to_exe=None): if not specs: tty.debug( - 'The following executables in {0} were decidedly not' + 'The following executables in {0} were decidedly not ' 'part of the package {1}: {2}' .format(prefix, pkg.name, ', '.join(exes_in_prefix)) ) -- cgit v1.2.3-70-g09d2