From: Sage Weil Date: Thu, 27 Feb 2020 17:39:01 +0000 (-0600) Subject: mgr/orch: fix 'orch ls' table spacing X-Git-Tag: v15.1.1~210^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=7259510d573140b63112cfdecff15abab065871a;p=ceph-ci.git mgr/orch: fix 'orch ls' table spacing This command crossed paths with the PR that changed the spacing. Signed-off-by: Sage Weil --- diff --git a/src/pybind/mgr/orchestrator/module.py b/src/pybind/mgr/orchestrator/module.py index 59e3728433f..e6ba6498461 100644 --- a/src/pybind/mgr/orchestrator/module.py +++ b/src/pybind/mgr/orchestrator/module.py @@ -343,7 +343,7 @@ class OrchestratorCli(OrchestratorClientMixin, MgrModule): table.align['IMAGE NAME'] = 'l' table.align['IMAGE ID'] = 'l' table.left_padding_width = 0 - table.right_padding_width = 1 + table.right_padding_width = 2 for s in sorted(services, key=lambda s: s.service_name): if s.last_refresh: age = to_pretty_timedelta(now - s.last_refresh) + ' ago'