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", [])