From: Varsha Rao Date: Mon, 29 Jul 2019 06:07:29 +0000 (+0530) Subject: cephfs-shell: Fix multiple spaces after ':' flake8 error X-Git-Tag: v15.1.0~2038^2~4 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=49e6a1e3943eb50cebb1151bc44ea87ac55fc129;p=ceph.git cephfs-shell: Fix multiple spaces after ':' flake8 error Fixes: https://tracker.ceph.com/issues/40992 Signed-off-by: Varsha Rao --- diff --git a/src/tools/cephfs/cephfs-shell b/src/tools/cephfs/cephfs-shell index 31e41f0da0fd..d5332ab4ed91 100755 --- a/src/tools/cephfs/cephfs-shell +++ b/src/tools/cephfs/cephfs-shell @@ -77,7 +77,7 @@ def mode_notation(mode): permission_bits = {'0': '---', '1': '--x', '2': '-w-', - '3': '-wx', + '3': '-wx', '4': 'r--', '5': 'r-x', '6': 'rw-',