From fa88649defd093aeb0c29c91856b5d29fcd59226 Mon Sep 17 00:00:00 2001 From: Balthasar Reuter Date: Tue, 17 Jul 2018 01:01:39 +0200 Subject: [PATCH] flake8 compliance --- photobooth/main.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/photobooth/main.py b/photobooth/main.py index 44c2d18..1e21806 100644 --- a/photobooth/main.py +++ b/photobooth/main.py @@ -26,7 +26,6 @@ except DistributionNotFound: import logging import logging.handlers import multiprocessing as mp -import sys from . import camera, gui from .Config import Config @@ -158,7 +157,7 @@ def run(argv): def main(argv): # Setup log level and format - log_level = logging.DEBUG + log_level = logging.INFO formatter = logging.Formatter( '%(asctime)s - %(name)s - %(levelname)s - %(message)s')