]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
cephfs.py: fix pep8 E202 whitespaces
authorDanny Al-Gaaf <danny.al-gaaf@bisect.de>
Sun, 1 Mar 2015 21:16:55 +0000 (22:16 +0100)
committerDanny Al-Gaaf <danny.al-gaaf@bisect.de>
Tue, 3 Mar 2015 11:59:30 +0000 (12:59 +0100)
Signed-off-by: Danny Al-Gaaf <danny.al-gaaf@bisect.de>
src/pybind/cephfs.py

index 635cd0c728d89cee7a9106078fe85341c8ddb15b..ea450599e0127bc39f73d39c34e4bc89f5aa2585 100644 (file)
@@ -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")