From e8367831c025e062d43405f528b159c7d7ef8dc5 Mon Sep 17 00:00:00 2001 From: Varsha Rao Date: Mon, 29 Jul 2019 11:58:47 +0530 Subject: [PATCH] cephfs-shell: Fix flake8 line break after binary operator error Fixes: https://tracker.ceph.com/issues/40992 Signed-off-by: Varsha Rao --- src/tools/cephfs/cephfs-shell | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/tools/cephfs/cephfs-shell b/src/tools/cephfs/cephfs-shell index 47f9922e159..544da9644ef 100755 --- a/src/tools/cephfs/cephfs-shell +++ b/src/tools/cephfs/cephfs-shell @@ -767,17 +767,17 @@ exists.') print_long(cephfs.getcwd().decode( 'utf-8') + path + '/' + path, is_dir, True) elif args.long: - print_long(cephfs.getcwd().decode('utf-8') + - path + - '/' + - path, + print_long(cephfs.getcwd().decode('utf-8') + + path + + '/' + + path, is_dir, False) elif is_dir: - values.append(colorama.Style.BRIGHT + - colorama.Fore.CYAN + - path + - '/' + - colorama.Style.RESET_ALL) + values.append(colorama.Style.BRIGHT + + colorama.Fore.CYAN + + path + + '/' + + colorama.Style.RESET_ALL) else: values.append(path) if not args.long: -- 2.39.5