Minor refactor of comic.py

This commit is contained in:
jvoisin 2020-10-31 22:28:24 +01:00
parent b9b8e3f632
commit 95a1a71a66
1 changed files with 6 additions and 8 deletions

View File

@ -62,14 +62,12 @@ def _cover_processing(tmp_file_name, img, extension):
im.save(tmp_bytesio, format='JPEG')
img = tmp_bytesio.getvalue()
prefix = os.path.dirname(tmp_file_name)
if img:
tmp_cover_name = prefix + '/cover.jpg'
image = open(tmp_cover_name, 'wb')
image.write(img)
image.close()
else:
tmp_cover_name = None
if not img:
return None
tmp_cover_name = os.path.join(os.path.dirname(tmp_file_name), 'cover.jpg')
with open(tmp_cover_name, 'wb') as f:
f.write(img)
return tmp_cover_name