Fix unmatched field in Authorization
The field in the formatted string was not matching the args
This commit is contained in:
parent
5870ff4713
commit
1f598e3752
|
@ -25,7 +25,7 @@ class Authorization(db.Model):
|
|||
return plugins.get(self.plugin_name)
|
||||
|
||||
def __repr__(self):
|
||||
return "Authorization(id={id})".format(label=self.id)
|
||||
return "Authorization(id={id})".format(id=self.id)
|
||||
|
||||
def __init__(self, account_number, domains, dns_provider_type, options=None):
|
||||
self.account_number = account_number
|
||||
|
|
Loading…
Reference in New Issue