From 7259510d573140b63112cfdecff15abab065871a Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Thu, 27 Feb 2020 11:39:01 -0600 Subject: [PATCH] mgr/orch: fix 'orch ls' table spacing This command crossed paths with the PR that changed the spacing. Signed-off-by: Sage Weil --- src/pybind/mgr/orchestrator/module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/mgr/orchestrator/module.py b/src/pybind/mgr/orchestrator/module.py index 59e3728433fe2..e6ba6498461df 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' -- 2.39.5