mirror of
https://github.com/munin-monitoring/contrib.git
synced 2025-07-21 18:41:03 +00:00
[docker_] Fix missing f-string
Signed-off-by: Olivier Mehani <shtrom@ssji.net>
This commit is contained in:
parent
11861370c4
commit
b1e3e601fe
1 changed files with 1 additions and 1 deletions
|
@ -293,7 +293,7 @@ def print_containers_network(client):
|
|||
def volume_summary(volume):
|
||||
summary = f"{volume.short_id}"
|
||||
if volume.attrs['Labels']:
|
||||
summary += " ({', '.join(volume.attrs['Labels'])})"
|
||||
summary += f" ({', '.join(volume.attrs['Labels'])})"
|
||||
return summary
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue