cephfs-top: fix typo in help

Signed-off-by: Jos Collin <jcollin@redhat.com>
This commit is contained in:
Jos Collin 2021-04-06 11:50:21 +05:30
parent 37d1a231c0
commit 96c7e07799
No known key found for this signature in database
GPG Key ID: 10DA18C384692C82

View File

@ -328,13 +328,13 @@ if __name__ == '__main__':
parser = argparse.ArgumentParser(description='Ceph Filesystem top utility')
parser.add_argument('--cluster', nargs='?', const='ceph', default='ceph',
help='Ceph cluster to connect (defualt: ceph)')
help='Ceph cluster to connect (default: ceph)')
parser.add_argument('--id', nargs='?', const='fstop', default='fstop',
help='Ceph user to use to connection (default: fstop)')
parser.add_argument('--conffile', nargs='?', default=None,
help='Path to cluster configuration file')
parser.add_argument('--selftest', dest='selftest', action='store_true',
help='run in selftest mode')
help='Run in selftest mode')
parser.add_argument('-d', '--delay', nargs='?', default=DEFAULT_REFRESH_INTERVAL,
type=float_greater_than, help='Interval to refresh data '
f'(default: {DEFAULT_REFRESH_INTERVAL})')