diff options
author | Tom Ritter <tom@ritter.vg> | 2016-01-31 17:20:05 -0500 |
---|---|---|
committer | Tom Ritter <tom@ritter.vg> | 2016-01-31 17:36:13 -0500 |
commit | 2fe68bac48427e687888fb8de13eea541d531610 (patch) | |
tree | 8f201b06840131b0ccfa1831f59bd1ac35471922 /jobs/PeerChecker.py | |
parent | e7c15ef06e7886f69cee15863d7f75dc75c9ecec (diff) |
Fix the super() calling
Diffstat (limited to 'jobs/PeerChecker.py')
-rwxr-xr-x | jobs/PeerChecker.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jobs/PeerChecker.py b/jobs/PeerChecker.py index d271419..8d0a6b7 100755 --- a/jobs/PeerChecker.py +++ b/jobs/PeerChecker.py @@ -13,9 +13,9 @@ import JobSpawner class PeerChecker(JobSpawner.JobSpawner):
class IndividualPeerChecker(JobBase.JobBase):
def __init__(self, config, checkurl, notificationAddress):
- JobBase.JobBase.__init__(self, config, checkurl, notificationAddress)
self.checkurl = checkurl
self.notificationAddress = notificationAddress
+ super(PeerChecker.IndividualPeerChecker, self).__init__(config, checkurl, notificationAddress)
def executeEvery(self):
return JobBase.JobFrequency.HOUR
|