From: Aditya Srivastava Date: Tue, 24 Mar 2020 07:52:38 +0000 (+0530) Subject: cephfs-shell: Remove extra trailing space after '+' X-Git-Tag: wip-pdonnell-testing-20200918.022351~1489^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=2129cc115cc0410161dd7c8ead3760fe909bc67e;p=ceph-ci.git 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 --- 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])