1
0
Fork 0
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:
Olivier Mehani 2020-09-17 23:16:40 +10:00
parent 11861370c4
commit b1e3e601fe

View file

@ -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