From b2234ae269ae6c445e82e89fc0f3d1e68d11acc1 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Tue, 24 Aug 2010 17:39:51 +0100 Subject: [PATCH] Remove Unused variables --- openlp/core/ui/slidecontroller.py | 1 - openlp/plugins/alerts/lib/alertsmanager.py | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/openlp/core/ui/slidecontroller.py b/openlp/core/ui/slidecontroller.py index c2976072c..b362ef7a4 100644 --- a/openlp/core/ui/slidecontroller.py +++ b/openlp/core/ui/slidecontroller.py @@ -25,7 +25,6 @@ ############################################################################### import logging -import time import os from PyQt4 import QtCore, QtGui diff --git a/openlp/plugins/alerts/lib/alertsmanager.py b/openlp/plugins/alerts/lib/alertsmanager.py index 94781d9db..a418c6fec 100644 --- a/openlp/plugins/alerts/lib/alertsmanager.py +++ b/openlp/plugins/alerts/lib/alertsmanager.py @@ -34,7 +34,7 @@ log = logging.getLogger(__name__) class AlertsManager(QtCore.QObject): """ - AlertsTab is the Alerts settings tab in the settings dialog. + AlertsManager manages the settings of Alerts. """ log.info(u'Alert Manager loaded') @@ -99,7 +99,6 @@ class AlertsManager(QtCore.QObject): """ log.debug(u'timer event') - alertTab = self.parent.alertsTab if event.timerId() == self.timer_id: self.parent.liveController.display.alert(u'') self.killTimer(self.timer_id)