From 98f369150cc46575831a96046941c461ff21077e Mon Sep 17 00:00:00 2001 From: Varsha Rao Date: Mon, 29 Jul 2019 17:11:37 +0530 Subject: [PATCH] cephfs-shell: Fix flake8 line too long error https://tracker.ceph.com/issues/40992 Signed-off-by: Varsha Rao --- src/tools/cephfs/cephfs-shell | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tools/cephfs/cephfs-shell b/src/tools/cephfs/cephfs-shell index 544da9644ef2c..ba4014a3b41ab 100755 --- a/src/tools/cephfs/cephfs-shell +++ b/src/tools/cephfs/cephfs-shell @@ -182,7 +182,8 @@ def print_long(path, is_dir, human_readable): info = cephfs.stat(path) pretty = os.path.basename(path.decode('utf-8')) if is_dir: - pretty = colorama.Style.BRIGHT + colorama.Fore.CYAN + pretty + '/' + colorama.Style.RESET_ALL + pretty = colorama.Style.BRIGHT + colorama.Fore.CYAN + pretty + '/' + pretty += colorama.Style.RESET_ALL if human_readable: poutput('{}\t{:10s} {} {} {} {}'.format( mode_notation(info.st_mode), -- 2.39.5