Bug fix: herp update notifier
This commit is contained in:
parent
fd00ec314a
commit
9a6de6452e
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ class MSPAChecker(QtGui.QWidget):
|
||||||
if self.status['last_seen']['pubdate'] > self.status['last_visited']['pubdate']:
|
if self.status['last_seen']['pubdate'] > self.status['last_visited']['pubdate']:
|
||||||
if not hasattr(self, "mspa"):
|
if not hasattr(self, "mspa"):
|
||||||
self.mspa = None
|
self.mspa = None
|
||||||
if not mspa:
|
if not self.mspa:
|
||||||
self.mspa = MSPAUpdateWindow(self.parent())
|
self.mspa = MSPAUpdateWindow(self.parent())
|
||||||
self.connect(self.mspa, QtCore.SIGNAL('accepted()'),
|
self.connect(self.mspa, QtCore.SIGNAL('accepted()'),
|
||||||
self, QtCore.SLOT('visit_site()'))
|
self, QtCore.SLOT('visit_site()'))
|
||||||
|
|
Loading…
Reference in a new issue