]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
use the new get_command helper in check_call 932/head
authorAlfredo Deza <alfredo@deza.pe>
Fri, 13 Dec 2013 17:06:25 +0000 (12:06 -0500)
committerAlfredo Deza <alfredo@deza.pe>
Fri, 13 Dec 2013 17:06:25 +0000 (12:06 -0500)
Signed-off-by: Alfredo Deza <alfredo@deza.pe>
src/ceph-disk

index c76d2f0dfbdf8b47e3eaeb3ae5627166c54e8d85..3709dd2a863fbb97e4b2dce1dcae3d6f8b2e658b 100755 (executable)
@@ -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)