From d2dd6dd558cd17759146b2d764abee674aee02f0 Mon Sep 17 00:00:00 2001 From: Danny Al-Gaaf Date: Sun, 1 Mar 2015 22:17:45 +0100 Subject: [PATCH] cephfs.py: pep8 E225. add missing whitespace around operator Signed-off-by: Danny Al-Gaaf --- src/pybind/cephfs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/cephfs.py b/src/pybind/cephfs.py index ea450599e0127..5ce548b317759 100644 --- a/src/pybind/cephfs.py +++ b/src/pybind/cephfs.py @@ -162,7 +162,7 @@ class LibCephFS(object): raise TypeError('conffile must be a string or None') ret = self.libcephfs.ceph_create(byref(self.cluster), c_char_p(0)) if ret != 0: - raise Error("libcephfs_initialize failed with error code: %d" %ret) + raise Error("libcephfs_initialize failed with error code: %d" % ret) self.state = "configuring" if conffile is not None: # read the default conf file when '' is given -- 2.39.5