From: John Mulligan Date: Wed, 17 Dec 2025 15:52:12 +0000 (-0500) Subject: ceph: fix a small error in the ceph command help X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=a09408e3b6d455c095f5968232beb24f3b63f784;p=ceph.git ceph: fix a small error in the ceph command help Before: ``` --cluster CLUSTER cluster name --admin-daemon ADMIN_SOCKET submit admin-socket command (e.g. "help" fora list of available commands) -s, --status show cluster status ``` ^ 'fora list' is probably not intentional. Due to the way the strings were concatenated in the python sources the words 'for' and 'a' lacked a space between them. Add a space before 'a' and fix the help output. Signed-off-by: John Mulligan --- diff --git a/src/ceph.in b/src/ceph.in index 6c8a1e944ca..abfc8fb57d9 100755 --- a/src/ceph.in +++ b/src/ceph.in @@ -309,7 +309,7 @@ def parse_cmdargs(args=None, target='') -> Tuple[argparse.ArgumentParser, parser.add_argument('--admin-daemon', dest='admin_socket', help='submit admin-socket command (e.g. "help\" for' \ - 'a list of available commands)') + ' a list of available commands)') parser.add_argument('-s', '--status', action='store_true', help='show cluster status')