From f1a8bad78e1bb16f3b08f5abb4614810918e6a11 Mon Sep 17 00:00:00 2001 From: Andreas Preikschat Date: Fri, 11 Jan 2013 20:36:28 +0100 Subject: [PATCH] added blank lines --- openlp/core/lib/screen.py | 2 ++ openlp/core/lib/settings.py | 2 ++ openlp/core/lib/ui.py | 1 + openlp/core/lib/uistrings.py | 2 ++ 4 files changed, 7 insertions(+) diff --git a/openlp/core/lib/screen.py b/openlp/core/lib/screen.py index 07bc3c0e1..097cac46d 100644 --- a/openlp/core/lib/screen.py +++ b/openlp/core/lib/screen.py @@ -37,8 +37,10 @@ from PyQt4 import QtCore from openlp.core.lib import Receiver, translate + log = logging.getLogger(__name__) + class ScreenList(object): """ Wrapper to handle the parameters of the display screen. diff --git a/openlp/core/lib/settings.py b/openlp/core/lib/settings.py index d94900d0c..3dfd15e6e 100644 --- a/openlp/core/lib/settings.py +++ b/openlp/core/lib/settings.py @@ -40,8 +40,10 @@ from openlp.core.lib import SlideLimits, ScreenList from openlp.core.lib.theme import ThemeLevel from openlp.core.lib import UiStrings + log = logging.getLogger(__name__) + # Fix for bug #1014422. X11_BYPASS_DEFAULT = True if sys.platform.startswith(u'linux'): diff --git a/openlp/core/lib/ui.py b/openlp/core/lib/ui.py index dda1a12e8..0d869d724 100644 --- a/openlp/core/lib/ui.py +++ b/openlp/core/lib/ui.py @@ -36,6 +36,7 @@ from PyQt4 import QtCore, QtGui from openlp.core.lib import build_icon, translate, Receiver, UiStrings from openlp.core.utils.actions import ActionList + log = logging.getLogger(__name__) diff --git a/openlp/core/lib/uistrings.py b/openlp/core/lib/uistrings.py index 740f3ef7a..904fb1979 100644 --- a/openlp/core/lib/uistrings.py +++ b/openlp/core/lib/uistrings.py @@ -33,8 +33,10 @@ import logging from openlp.core.lib import translate + log = logging.getLogger(__name__) + class UiStrings(object): """ Provide standard strings for objects to use.