From: Alfredo Deza Date: Fri, 13 Dec 2013 17:06:25 +0000 (-0500) Subject: use the new get_command helper in check_call X-Git-Tag: v0.75~114^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=897dfc113fe3b86f3dda53172933bfd4f8089869;p=ceph.git use the new get_command helper in check_call Signed-off-by: Alfredo Deza --- diff --git a/src/ceph-disk b/src/ceph-disk index c76d2f0dfbdf..3709dd2a863f 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)