use the new get_command helper in check_call

Signed-off-by: Alfredo Deza <alfredo@deza.pe>
This commit is contained in:
Alfredo Deza 2013-12-13 12:06:25 -05:00
parent a9334a1c8c
commit 897dfc113f

View File

@ -273,7 +273,7 @@ def command_check_call(arguments):
of making sure that executables *will* be found and will error nicely
otherwise.
"""
_check_command_executable(arguments)
arguments = _get_command_executable(arguments)
return subprocess.check_call(arguments)