From d010cdb37344dcf8393378c1f68f07c06d76fa5e Mon Sep 17 00:00:00 2001 From: Massimiliano Culpo Date: Fri, 5 Apr 2019 21:43:29 +0200 Subject: [PATCH] Fixed namespace issue occurred during rebase --- lib/spack/spack/compiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/spack/spack/compiler.py b/lib/spack/spack/compiler.py index c11cbac162a..1136485ba98 100644 --- a/lib/spack/spack/compiler.py +++ b/lib/spack/spack/compiler.py @@ -32,7 +32,7 @@ def get_compiler_version_output(compiler_path, version_arg): compiler_path (path): path of the compiler to be invoked version_arg (str): the argument used to extract version information """ - compiler = Executable(compiler_path) + compiler = spack.util.executable.Executable(compiler_path) output = compiler(version_arg, output=str, error=str) return output