From db47de92ad38dfc65843dcfa5c087c3046f1bad0 Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Wed, 14 Oct 2009 19:52:50 +0200 Subject: [PATCH] Added in a line to fix the logging. --- openlp/core/utils/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openlp/core/utils/__init__.py b/openlp/core/utils/__init__.py index de12084ea..0c5572f4d 100644 --- a/openlp/core/utils/__init__.py +++ b/openlp/core/utils/__init__.py @@ -30,6 +30,8 @@ from confighelper import ConfigHelper __all__ = ['Registry', 'ConfigHelper'] +log = logging.getLogger(__name__) + def check_latest_version(config, current_version): version_string = current_version lastTest = config.get_config(u'Application version Test', datetime.now().date())