(self, args)
| 298 | return ["INFO: Starting downloads."] |
| 299 | |
| 300 | def event_pause(self, args): |
| 301 | self.pyload.api.pauseServer() |
| 302 | return ["INFO: No new downloads will be started."] |
| 303 | |
| 304 | def event_togglepause(self, args): |
| 305 | if self.pyload.api.togglePause(): |
nothing calls this directly
no test coverage detected