diff --git a/src/_zkapauthorizer/controller.py b/src/_zkapauthorizer/controller.py index 7dc5146ddd15a11a8837a8b9af7b928069bc58b7..96d70747cc45f31cebd2c67cc3bcd821c3977e54 100644 --- a/src/_zkapauthorizer/controller.py +++ b/src/_zkapauthorizer/controller.py @@ -458,7 +458,9 @@ class IssuerConfigurationMismatch(Exception): ZKAPs will not be usable and new ones must be obtained. """ def __str__(self): - return "Announced issuer ({}) disagrees with configured issuer ({}).".format(self.args) + return "Announced issuer ({}) disagrees with configured issuer ({}).".format( + *self.args + ) @implementer(IRedeemer)