use python2.7 `device.Pull(file_name, dest_file)` return {TypeError}coercing to Unicode: need string or buffer, file found And I must use follow way to get work around: ``` file_bytes = device.Pull(file_name) output_file = open(dest_file, "wb") output_file.write(file_bytes) output_file.close() ```
use python2.7
device.Pull(file_name, dest_file)return {TypeError}coercing to Unicode: need string or buffer, file found
And I must use follow way to get work around: