forked from platypush/platypush
PIL JPEG format name typo fix
This commit is contained in:
parent
83122becdb
commit
4d0d467292
1 changed files with 1 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue