mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-06 10:43:14 +00:00
Letsencrypt fix (#24906)
* Replaced deprecated cmp with custom condition References #24756 * Fix PEP 08 indention
This commit is contained in:
committed by
Toshio Kuratomi
parent
3b45a9eb58
commit
16d522cf2c
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user