From: Danny Al-Gaaf Date: Sun, 1 Mar 2015 21:16:55 +0000 (+0100) Subject: cephfs.py: fix pep8 E202 whitespaces X-Git-Tag: v9.0.0~219^2~14 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=c0d2fcf549f0d298017bd800d458764455a6920a;p=ceph.git cephfs.py: fix pep8 E202 whitespaces Signed-off-by: Danny Al-Gaaf --- diff --git a/src/pybind/cephfs.py b/src/pybind/cephfs.py index 635cd0c728d8..ea450599e012 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")