Calibre 5.2.0 how to Modify or compile python-lib.bypy.frozen
Calibre 5.2.0 how to Modify or compile python-lib.bypy.frozen.
this can modify the pylib.zip file before.
I want to modify in filenames.py:
def delete_originals(self):
import win32file
for path in self.handle_map:
#win32file.DeleteFileW(path)
os.remove(path)
self.close_handles()
|