From 0041e9f8ffeb4354740f2ab34b674f9acac86273 Mon Sep 17 00:00:00 2001 From: Dan Mick Date: Fri, 26 Jul 2013 17:47:49 -0700 Subject: [PATCH] rados.py: missing parameter to make_ex() Signed-off-by: Dan Mick Reviewed-by: Sage Weil --- src/pybind/rados.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/rados.py b/src/pybind/rados.py index 13ce006f8ced..040009271cba 100644 --- a/src/pybind/rados.py +++ b/src/pybind/rados.py @@ -278,7 +278,7 @@ Rados object in state %s." % (self.state)) ret = run_in_thread(self.librados.rados_conf_parse_argv_remainder, (self.cluster, len(args), cargs, cretargs)) if ret: - raise make_ex("error calling conf_parse_argv_remainder") + raise make_ex(ret, "error calling conf_parse_argv_remainder") # cretargs was allocated with fixed length; collapse return # list to eliminate any missing args -- 2.47.3