From 1f2d6379288c79e63a39dd25713b4d6055ff868d Mon Sep 17 00:00:00 2001 From: msramalho <19508417+msramalho@users.noreply.github.com> Date: Sun, 8 Jun 2025 14:16:21 +0100 Subject: [PATCH] minor improvements --- docs/source/installation/authentication.md | 10 +++++----- .../modules/generic_extractor/generic_extractor.py | 1 - 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/docs/source/installation/authentication.md b/docs/source/installation/authentication.md index f8ba9ea..16e650f 100644 --- a/docs/source/installation/authentication.md +++ b/docs/source/installation/authentication.md @@ -52,12 +52,12 @@ authentication: username: myusername password: 123 - facebook.com: - cookie: single_cookie + facebook.com: + cookie: single_cookie - othersite.com: - api_key: 123 - api_secret: 1234 + othersite.com: + api_key: 123 + api_secret: 1234 ``` diff --git a/src/auto_archiver/modules/generic_extractor/generic_extractor.py b/src/auto_archiver/modules/generic_extractor/generic_extractor.py index 3417465..8838528 100644 --- a/src/auto_archiver/modules/generic_extractor/generic_extractor.py +++ b/src/auto_archiver/modules/generic_extractor/generic_extractor.py @@ -371,7 +371,6 @@ class GenericExtractor(Extractor): data = ydl.extract_info(url, ie_key=info_extractor.ie_key(), download=True) except MaxDownloadsReached: # proceed as normal once MaxDownloadsReached is raised pass - logger.success(data) if "entries" in data: entries = data.get("entries", [])