From: Aditya Srivastava Date: Tue, 24 Mar 2020 07:49:17 +0000 (+0530) Subject: cephfs-shell: Indent 'under-indented' code in read_ceph_conf function X-Git-Tag: wip-pdonnell-testing-20200918.022351~1489^2~2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=db257bb97ed831267999464a725580bccecf3d4e;p=ceph-ci.git cephfs-shell: Indent 'under-indented' code in read_ceph_conf function This patch fixes following flake8 error: E128 continuation line under-indented for visual indent 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 e754af3ad48..e56ecd4cda8 100755 --- a/src/tools/cephfs/cephfs-shell +++ b/src/tools/cephfs/cephfs-shell @@ -1509,18 +1509,18 @@ def get_bool_vals_for_boolopts(val): def read_ceph_conf(shell, config_file): try: shell.debug = get_bool_vals_for_boolopts(cephfs. - conf_get('debug_shell')) + conf_get('debug_shell')) shell.allow_ansi = get_bool_vals_for_boolopts(cephfs. - conf_get('allow_ansi')) + conf_get('allow_ansi')) shell.echo = get_bool_vals_for_boolopts(cephfs.conf_get('echo')) shell.continuation_prompt = get_bool_vals_for_boolopts(cephfs. - conf_get('continuation_prompt')) + conf_get('continuation_prompt')) shell.colors = get_bool_vals_for_boolopts(cephfs.conf_get('colors')) shell.editor = get_bool_vals_for_boolopts(cephfs.conf_get('editor')) shell.feedback_to_output = get_bool_vals_for_boolopts(cephfs. - conf_get('feedback_to_output')) + conf_get('feedback_to_output')) shell.max_completion_items = get_bool_vals_for_boolopts(cephfs. - conf_get('max_completion_items')) + conf_get('max_completion_items')) shell.prompt = get_bool_vals_for_boolopts(cephfs.conf_get('prompt')) shell.quiet = get_bool_vals_for_boolopts(cephfs.conf_get('quiet')) shell.timing = get_bool_vals_for_boolopts(cephfs.conf_get('timing'))