From 897dfc113fe3b86f3dda53172933bfd4f8089869 Mon Sep 17 00:00:00 2001 From: Alfredo Deza Date: Fri, 13 Dec 2013 12:06:25 -0500 Subject: [PATCH] use the new get_command helper in check_call Signed-off-by: Alfredo Deza --- src/ceph-disk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ceph-disk b/src/ceph-disk index c76d2f0dfbd..3709dd2a863 100755 --- a/src/ceph-disk +++ b/src/ceph-disk @@ -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) -- 2.47.3