diff options
author | Dr. Rolf Jansen <cyclaero@users.noreply.github.com> | 2021-03-15 19:31:44 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-15 19:31:44 -0300 |
commit | 2a6dbeb6a5073d2fde5d655d5d99273b346f4ff0 (patch) | |
tree | d733a773a6d729561b2c5390bee68c12c5a82cf2 | |
parent | 4a27dabcf7cbfda3a8e7b89d1ba37721ee58fbc7 (diff) | |
parent | 4c631ac6d0bbe3338598329ee562b92f6766d63a (diff) | |
download | searxng-2a6dbeb6a5073d2fde5d655d5d99273b346f4ff0.tar.gz searxng-2a6dbeb6a5073d2fde5d655d5d99273b346f4ff0.zip |
Merge branch 'master' into conditional-sigusr1
-rw-r--r-- | searx/engines/youtube_noapi.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/searx/engines/youtube_noapi.py b/searx/engines/youtube_noapi.py index 5b9e3e3f4..53436b850 100644 --- a/searx/engines/youtube_noapi.py +++ b/searx/engines/youtube_noapi.py @@ -70,8 +70,6 @@ def response(resp): def parse_next_page_response(response_text): results = [] result_json = loads(response_text) - with open("/tmp/x", "w") as f: - f.write(response_text) for section in (result_json['onResponseReceivedCommands'][0] .get('appendContinuationItemsAction')['continuationItems'][0] .get('itemSectionRenderer')['contents']): |