]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
ceph: fix a small error in the ceph command help 66666/head
authorJohn Mulligan <jmulligan@redhat.com>
Wed, 17 Dec 2025 15:52:12 +0000 (10:52 -0500)
committerJohn Mulligan <jmulligan@redhat.com>
Wed, 17 Dec 2025 15:52:12 +0000 (10:52 -0500)
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 <jmulligan@redhat.com>
src/ceph.in

index 6c8a1e944ca1a4a9ea173fb7a9f6b9b2d96d6e7c..abfc8fb57d98ab2c3cbd75d4087774e1f342663e 100755 (executable)
@@ -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')