Merge pull request #3041 from jramosf/patch-1
Fix unmatched field in Authorization
This commit is contained in:
commit
75160ae5f3
|
@ -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