Constructor
(self)
| 43 | CONFLINE = re.compile(r'^\s*(?P<T>.+?)\s+(?P<N>[^ ]+?)\s*:\s*"(?P<D>.+?)"\s*=\s?(?P<V>.*)') |
| 44 | |
| 45 | def __init__(self): |
| 46 | """Constructor""" |
| 47 | self.config = {} # the config values |
| 48 | self.plugin = {} # the config for plugins |
| 49 | self.oldRemoteData = {} |
| 50 | |
| 51 | self.pluginCB = None # callback when plugin config value is changed |
| 52 | |
| 53 | self.checkVersion() |
| 54 | |
| 55 | self.readConfig() |
| 56 | |
| 57 | self.deleteOldPlugins() |
| 58 | |
| 59 | |
| 60 | def checkVersion(self, n=0): |
nothing calls this directly
no test coverage detected