Skip to content

Commit

Permalink
Remove space in Podman ID
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolargo committed May 8, 2023
1 parent 2ae676b commit 985dd6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion glances/plugins/glances_containers.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ def msg_curse(self, args=None, max_width=None):
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
Expand Down

0 comments on commit 985dd6c

Please sign in to comment.