From c0d2fcf549f0d298017bd800d458764455a6920a Mon Sep 17 00:00:00 2001 From: Danny Al-Gaaf Date: Sun, 1 Mar 2015 22:16:55 +0100 Subject: [PATCH] cephfs.py: fix pep8 E202 whitespaces Signed-off-by: Danny Al-Gaaf --- src/pybind/cephfs.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pybind/cephfs.py b/src/pybind/cephfs.py index 635cd0c728d89..ea450599e0127 100644 --- a/src/pybind/cephfs.py +++ b/src/pybind/cephfs.py @@ -126,7 +126,7 @@ class cephfs_stat(Structure): ('st_ctime', cephfs_timespec), # time of last status change ('__unused1', c_long), ('__unused2', c_long), - ('__unused3', c_long) ] + ('__unused3', c_long)] def load_libcephfs(): @@ -281,7 +281,7 @@ class LibCephFS(object): 'f_favail': statbuf.f_favail, 'f_fsid': statbuf.f_fsid, 'f_flag': statbuf.f_flag, - 'f_namemax': statbuf.f_namemax } + 'f_namemax': statbuf.f_namemax} def sync_fs(self): self.require_state("mounted") @@ -377,7 +377,7 @@ class LibCephFS(object): 'st_blocks': statbuf.st_blocks, 'st_atime': statbuf.st_atime, 'st_mtime': statbuf.st_mtime, - 'st_ctime': statbuf.st_ctime } + 'st_ctime': statbuf.st_ctime} def unlink(self, path): self.require_state("mounted") -- 2.39.5