diff options
Diffstat (limited to 'src')
-rwxr-xr-x | src/sound_bot.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sound_bot.py b/src/sound_bot.py index 9dec6b7..70d89a8 100755 --- a/src/sound_bot.py +++ b/src/sound_bot.py @@ -458,7 +458,7 @@ def camera_capture(ctx: Context) -> None: if 'rotate' in camera_config: im = Image.open(fd.name) im.rotate(camera_config['rotate'], expand=True) - im.show() + # im.show() im.save(fd.name) logger.debug(f"rotated image {camera_config['rotate']} degrees") |