(self, lockfile, interval)
| 3153 | the lockfile gets deleted or gets to old. ''' |
| 3154 | |
| 3155 | def __init__(self, lockfile, interval): |
| 3156 | threading.Thread.__init__(self) |
| 3157 | self.lockfile, self.interval = lockfile, interval |
| 3158 | #: Is one of 'reload', 'error' or 'exit' |
| 3159 | self.status = None |
| 3160 | |
| 3161 | def run(self): |
| 3162 | exists = os.path.exists |