(self, pypack)
| 203 | self.queue.remove(pid) |
| 204 | |
| 205 | def package_finished(self, pypack): |
| 206 | self.queue.add(pypack.id) |
| 207 | if not self.config.get('waitall') and not self.extracting: |
| 208 | self.extract_queued() |
| 209 | |
| 210 | def all_downloads_processed(self): |
| 211 | self.last_package = True |
nothing calls this directly
no test coverage detected