# -*- coding: utf-8 -*- from .GrepLog import GrepLog class PostStartup(GrepLog): # export def __init__(self, regex = None, log_glob=None, act_timeout=2, total_timeout=None): if regex is None: regex = 'done with post-startup start' super().__init__(regex=regex, log_glob=log_glob, act_timeout=act_timeout, total_timeout=total_timeout)