[common] pass job status to 'finalize()'

This commit is contained in:
Mike Fährmann
2026-02-06 18:47:11 +01:00
parent da887721c9
commit 40e4cc62c4
7 changed files with 14 additions and 14 deletions

View File

@@ -26,8 +26,8 @@ class VkExtractor(Extractor):
def _init(self):
self.offset = text.parse_int(self.config("offset"))
def finalize(self):
if self.offset:
def finalize(self, status):
if status and self.offset:
self.log.info("Use '-o offset=%s' to continue downloading "
"from the current position", self.offset)