From: Alfredo Deza Date: Fri, 6 Sep 2013 20:48:58 +0000 (-0400) Subject: make sure the wrappers always return the check_call X-Git-Tag: v1.2.4~17^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F66%2Fhead;p=ceph-deploy.git make sure the wrappers always return the check_call Signed-off-by: Alfredo Deza --- diff --git a/ceph_deploy/util/wrappers.py b/ceph_deploy/util/wrappers.py index 7f5e6f2..04c38a1 100644 --- a/ceph_deploy/util/wrappers.py +++ b/ceph_deploy/util/wrappers.py @@ -35,7 +35,7 @@ def check_call(conn, logger, args, *a, **kw): def remote_call(args, *a, **kw): import subprocess - subprocess.check_call( + return subprocess.check_call( args, *a, **kw