From: Sage Weil Date: Thu, 27 Feb 2020 17:22:55 +0000 (-0600) Subject: mgr/orchestrator: fix 'orch host label rm' help text X-Git-Tag: v15.1.1~209^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=30ff30a4d7215154b50405a0915ad934c4a58e21;p=ceph-ci.git mgr/orchestrator: fix 'orch host label rm' help text Signed-off-by: Sage Weil --- diff --git a/src/pybind/mgr/orchestrator/module.py b/src/pybind/mgr/orchestrator/module.py index 59e3728433f..874bf748702 100644 --- a/src/pybind/mgr/orchestrator/module.py +++ b/src/pybind/mgr/orchestrator/module.py @@ -233,7 +233,7 @@ class OrchestratorCli(OrchestratorClientMixin, MgrModule): 'orch host label rm', 'name=hostname,type=CephString ' 'name=label,type=CephString', - 'Add a host label') + 'Remove a host label') def _host_label_rm(self, hostname, label): completion = self.remove_host_label(hostname, label) self._orchestrator_wait([completion])