Kobo driver: Fix viewing of KEPUB files from the device view in calibre not working

This commit is contained in:
Kovid Goyal 2025-04-05 02:16:42 +05:30
parent 7008725bb8
commit 1973cdb7d6
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -762,7 +762,7 @@ class KOBO(USBMS):
pass
else:
with open(outpath, 'rb') as src:
shutil.copyfile(src, outfile)
shutil.copyfileobj(src, outfile)
return
return USBMS.get_file(self, path, outfile, end_session=end_session)