From fa93154f1da6e4f5b01b128a47be98e1b502348c Mon Sep 17 00:00:00 2001 From: Danny Al-Gaaf Date: Sun, 1 Mar 2015 21:31:25 +0100 Subject: [PATCH] rbd.py: fix pep8 E127 over-indented line Signed-off-by: Danny Al-Gaaf --- src/pybind/rbd.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pybind/rbd.py b/src/pybind/rbd.py index 8ce6adad50ab7..7e0dd4a438224 100644 --- a/src/pybind/rbd.py +++ b/src/pybind/rbd.py @@ -277,8 +277,8 @@ class RBD(object): ret = self.librbd.rbd_clone(p_ioctx.io, c_char_p(p_name), c_char_p(p_snapname), c_ioctx.io, c_char_p(c_name), - c_uint64(features), - byref(c_int(order))) + c_uint64(features), + byref(c_int(order))) if ret < 0: raise make_ex(ret, 'error creating clone') -- 2.39.5