From: Varsha Rao Date: Mon, 29 Jul 2019 06:28:47 +0000 (+0530) Subject: cephfs-shell: Fix flake8 line break after binary operator error X-Git-Tag: v15.1.0~2038^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=e8367831c025e062d43405f528b159c7d7ef8dc5;p=ceph.git cephfs-shell: Fix flake8 line break after binary operator 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 47f9922e1597..544da9644ef2 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: