diff --git a/.gitignore b/.gitignore index 8089294..a142f2c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ photobooth.cfg +**/*.pyc **/__pycache__ .eggs .venv diff --git a/photobooth/camera/__init__.py b/photobooth/camera/__init__.py index 59ed75a..db7c217 100644 --- a/photobooth/camera/__init__.py +++ b/photobooth/camera/__init__.py @@ -50,7 +50,7 @@ class Camera: self._pic_dims = None self._is_preview = self._cfg.getBool('Photobooth', 'show_preview') - self._is_keep_pictures = self._cfg.getBool('Picture', 'keep_pictures') + self._is_keep_pictures = self._cfg.getBool('Storage', 'keep_pictures') def startup(self):