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.67.6~1^2~23 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=0fe2ac47a82d3caa9dca2a9009b68a14b577e35c;p=ceph.git use the new get_command helper in check_call Signed-off-by: Alfredo Deza (cherry picked from commit 897dfc113fe3b86f3dda53172933bfd4f8089869) --- diff --git a/src/ceph-disk b/src/ceph-disk index 38a9dbbe15c..1614a1ee071 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)