From 2129cc115cc0410161dd7c8ead3760fe909bc67e Mon Sep 17 00:00:00 2001 From: Aditya Srivastava Date: Tue, 24 Mar 2020 13:22:38 +0530 Subject: [PATCH] cephfs-shell: Remove extra trailing space after '+' This patch fixes the following flake8 error: E222 multiple spaces after operator Fixes: https://tracker.ceph.com/issues/44657 Signed-off-by: Aditya Srivastava --- src/tools/cephfs/cephfs-shell | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/cephfs/cephfs-shell b/src/tools/cephfs/cephfs-shell index 33fb5bb26eb..4618d8a41e8 100755 --- a/src/tools/cephfs/cephfs-shell +++ b/src/tools/cephfs/cephfs-shell @@ -1551,7 +1551,7 @@ if __name__ == '__main__': if LooseVersion(cmd2_version) <= LooseVersion("0.9.13"): args.commands = ['load ' + args.batch, ',quit'] else: - args.commands = ['run_script ' + args.batch, ',quit'] + args.commands = ['run_script ' + args.batch, ',quit'] if args.test: args.commands.extend(['-t,'] + [arg + ',' for arg in args.test]) -- 2.39.5