Guillaume Ayoub 12 лет назад
Родитель
Сommit
18f5c334f1
1 измененных файлов с 4 добавлено и 2 удалено
  1. 4 2
      radicale/log.py

+ 4 - 2
radicale/log.py

@@ -34,6 +34,7 @@ from . import config
 
 LOGGER = logging.getLogger()
 
+
 def start():
     filename = os.path.expanduser(config.get("logging", "config"))
     debug = config.getboolean("logging", "debug")
@@ -53,5 +54,6 @@ def start():
         LOGGER.addHandler(handler)
         if debug:
             LOGGER.setLevel(logging.DEBUG)
-            LOGGER.debug("Logging configuration file '%s' not found, using stdout."
-                         % filename)
+            LOGGER.debug(
+                "Logging configuration file '%s' not found, using stdout." %
+                filename)