summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornicolargo <nicolas@nicolargo.com>2023-05-08 10:11:10 +0200
committernicolargo <nicolas@nicolargo.com>2023-05-08 10:11:10 +0200
commit985dd6c8ea0e8dfad4da08b7373a42fb72a972ba (patch)
treed8f95d16694f9f994f4fac245cb171c88ccf23de
parent2ae676ba12dfe9b34a77cde6c0bd9b3302b8591e (diff)
Remove space in Podman ID
-rw-r--r--glances/plugins/glances_containers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/glances/plugins/glances_containers.py b/glances/plugins/glances_containers.py
index 3aee8e83..af36278a 100644
--- a/glances/plugins/glances_containers.py
+++ b/glances/plugins/glances_containers.py
@@ -304,7 +304,7 @@ class Plugin(GlancesPlugin):
if show_engine_name:
ret.append(self.curse_add_line(' {:{width}}'.format(container["engine"], width=6)))
if show_pod_name:
- ret.append(self.curse_add_line(' {:{width}}'.format(container.get("pod_id", " - "), width=12)))
+ ret.append(self.curse_add_line(' {:{width}}'.format(container.get("pod_id", "-"), width=12)))
# Name
ret.append(self.curse_add_line(self._msg_name(container=container, max_width=name_max_width)))
# Status