(self)
| 489 | self.scheduler.work() |
| 490 | |
| 491 | def setupDB(self): |
| 492 | self.db = DatabaseBackend(self) # the backend |
| 493 | self.db.setup() |
| 494 | |
| 495 | self.files = FileHandler(self) |
| 496 | self.db.manager = self.files #ugly? |
| 497 | |
| 498 | def init_webserver(self): |
| 499 | if self.config['webinterface']['activated']: |
no test coverage detected