From: Danny Al-Gaaf Date: Sun, 1 Mar 2015 21:17:45 +0000 (+0100) Subject: cephfs.py: pep8 E225. add missing whitespace around operator X-Git-Tag: v9.0.0~219^2~13 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=d2dd6dd558cd17759146b2d764abee674aee02f0;p=ceph.git cephfs.py: pep8 E225. add missing whitespace around operator Signed-off-by: Danny Al-Gaaf --- diff --git a/src/pybind/cephfs.py b/src/pybind/cephfs.py index ea450599e012..5ce548b31775 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