mirror of
https://github.com/munin-monitoring/contrib.git
synced 2025-07-22 02:51: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):
|
def volume_summary(volume):
|
||||||
summary = f"{volume.short_id}"
|
summary = f"{volume.short_id}"
|
||||||
if volume.attrs['Labels']:
|
if volume.attrs['Labels']:
|
||||||
summary += " ({', '.join(volume.attrs['Labels'])})"
|
summary += f" ({', '.join(volume.attrs['Labels'])})"
|
||||||
return summary
|
return summary
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue