DNS Made Easy fix locale for date string (#44624)
This commit is contained in:
parent
6a50c6aae4
commit
d5ab712fad
2 changed files with 4 additions and 0 deletions
2
changelogs/fragments/44624-dnsmadeeasy-fix_locale.yaml
Normal file
2
changelogs/fragments/44624-dnsmadeeasy-fix_locale.yaml
Normal file
|
@ -0,0 +1,2 @@
|
|||
bugfixes:
|
||||
- dnsmadeeasy - force the date to be rendered with C (POSIX system default) locale as English short date names are required by API
|
|
@ -367,6 +367,7 @@ EXAMPLES = '''
|
|||
import json
|
||||
import hashlib
|
||||
import hmac
|
||||
import locale
|
||||
from time import strftime, gmtime
|
||||
|
||||
from ansible.module_utils.basic import AnsibleModule
|
||||
|
@ -414,6 +415,7 @@ class DME2(object):
|
|||
return headers
|
||||
|
||||
def _get_date(self):
|
||||
locale.setlocale(locale.LC_TIME, 'C')
|
||||
return strftime("%a, %d %b %Y %H:%M:%S GMT", gmtime())
|
||||
|
||||
def _create_hash(self, rightnow):
|
||||
|
|
Loading…
Reference in a new issue