nxos_file_copy fix for binary files (#46822)

Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
pull/33103/head
Trishna Guha 6 years ago committed by GitHub
parent 6bd4665c4e
commit 9c81634c77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -191,7 +191,7 @@ def md5sum_check(module, dst, file_system):
local_file = module.params['local_file']
try:
with open(local_file, 'r') as f:
with open(local_file, 'rb') as f:
filecontent = f.read()
except (OSError, IOError) as exc:
module.fail_json(msg="Error reading the file: %s" % to_text(exc))

Loading…
Cancel
Save