]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
cephfs-shell: Fix flake8 E302 blank line error
authorVarsha Rao <varao@redhat.com>
Mon, 22 Jul 2019 06:08:33 +0000 (11:38 +0530)
committerVarsha Rao <varao@redhat.com>
Mon, 22 Jul 2019 06:08:33 +0000 (11:38 +0530)
Fixes: https://tracker.ceph.com/issues/40836
Signed-off-by: Varsha Rao <varao@redhat.com>
src/tools/cephfs/cephfs-shell

index de81ed4456fbbd8c6ee8ff34f7e72a450d726fd5..9f30e77e6c6cb80d74937184fd27e773683cc84d 100755 (executable)
@@ -100,6 +100,7 @@ def get_chunks(file_size):
 def to_bytes(string):
     return bytes(string, encoding='utf-8')
 
+
 def ls(path, opts=''):
     # opts tries to be like /bin/ls opts
     almost_all = 'A' in opts
@@ -115,6 +116,7 @@ def ls(path, opts=''):
     except cephfs.ObjectNotFound:
         return []
 
+
 def glob(path, pattern):
     if isinstance(path, bytes):
         path = path.decode('utf-8')