remove prints

This commit is contained in:
Tim Bentley 2010-04-10 19:08:03 +01:00
parent 7542865380
commit f99b91509c
2 changed files with 0 additions and 3 deletions

View File

@ -582,8 +582,6 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow):
self.videoDisplay.lower()
self.mainDisplay.raise_()
print self.children()
def blankCheck(self):
if str_to_bool(self.generalConfig.get_config(u'screen blank', False)) \
and str_to_bool(self.generalConfig.get_config(u'blank warning', False)):

View File

@ -113,7 +113,6 @@ class AlertsManager(QtCore.QObject):
self.parent.maindisplay.addAlertImage(alertframe)
# check to see if we have a timer running
if self.timer_id == 0:
print "timer tripped"
self.timer_id = self.startTimer(int(alertTab.timeout) * 1000)
def timerEvent(self, event):