PIL JPEG format name typo fix

This commit is contained in:
Fabio Manganiello 2020-09-08 18:14:49 +02:00
parent 83122becdb
commit 4d0d467292
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ class CameraIrMlx90640Plugin(CameraPlugin):
image = image.transpose(rotate)
temp = io.BytesIO()
image.save(temp, format='jpg')
image.save(temp, format='jpeg')
self._output.write(temp.getvalue())
def __enter__(self):