mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 13:52:54 +00:00
Fixing bug with unicode templates.
The utils.md5s() function would break when calculating checksums for non-ascii characters. Convert to utf-8 first.
This commit is contained in:
@@ -301,7 +301,7 @@ def md5s(data):
|
||||
''' Return MD5 hex digest of data. '''
|
||||
|
||||
digest = _md5()
|
||||
digest.update(data)
|
||||
digest.update(data.encode('utf-8'))
|
||||
return digest.hexdigest()
|
||||
|
||||
def md5(filename):
|
||||
|
||||
Reference in New Issue
Block a user