nxos_file_copy fix for binary files (#46822)

Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
(cherry picked from commit 9c81634c77)
This commit is contained in:
Trishna Guha 2018-10-22 15:41:18 +05:30 committed by Toshio Kuratomi
parent f0a706e4a0
commit 914eea8361

View file

@ -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))