From 2e6556a11b02a442eacb7d66f0f2301ea411f106 Mon Sep 17 00:00:00 2001 From: Ken Roberts Date: Tue, 21 Oct 2014 17:02:37 -0700 Subject: [PATCH] Fix call to get_source_list in pjlink1 --- openlp/core/lib/projector/pjlink1.py | 1 + 1 file changed, 1 insertion(+) diff --git a/openlp/core/lib/projector/pjlink1.py b/openlp/core/lib/projector/pjlink1.py index 21bf9d605..c0e13efd0 100644 --- a/openlp/core/lib/projector/pjlink1.py +++ b/openlp/core/lib/projector/pjlink1.py @@ -389,6 +389,7 @@ class PJLink1(QTcpSocket): self.send_command(cmd='CLSS', salt=salt) self.waitForReadyRead() if (not self.no_poll) and (self.state() == self.ConnectedState): + log.debug('(%s) Starting timer' % self.ip) self.timer.setInterval(2000) # Set 2 seconds for initial information self.timer.start()