fix error message

This commit is contained in:
HgO 2022-07-10 03:07:31 +02:00
parent 4d30d5b01a
commit af0b9c31ca

View file

@ -126,5 +126,5 @@ class AlertmanagerClient:
if not matcher.match(labels):
raise AlertMismatchError(
f"Alert with label {labels[matcher.label]} does not match {matcher}"
f"Alert with label {matcher.label}={labels[matcher.label]} does not match {matcher}"
)