Letsencrypt fix (#24906)
* Replaced deprecated cmp with custom condition References #24756 * Fix PEP 08 indention
This commit is contained in:
parent
3b45a9eb58
commit
16d522cf2c
1 changed files with 1 additions and 1 deletions
|
@ -464,7 +464,7 @@ class ACMEAccount(object):
|
|||
# ...and check if update is necessary
|
||||
do_update = False
|
||||
if 'contact' in result:
|
||||
if cmp(contact, result['contact']) != 0:
|
||||
if contact != result['contact']:
|
||||
do_update = True
|
||||
elif len(contact) > 0:
|
||||
do_update = True
|
||||
|
|
Loading…
Reference in a new issue