diff options
author | Gabor Nagy <mail@aigeruth.hu> | 2014-02-05 20:24:31 +0100 |
---|---|---|
committer | Gabor Nagy <mail@aigeruth.hu> | 2014-02-05 20:24:31 +0100 |
commit | 22fd0746d94ec9285561b4da9a59939931a6c088 (patch) | |
tree | c7a2b84de48cd068343f0b7986055c7f7981e31e /searx/engines/youtube.py | |
parent | b22dd51bd7fc7234a40b664964a6210cbe7bf455 (diff) | |
download | searxng-22fd0746d94ec9285561b4da9a59939931a6c088.tar.gz searxng-22fd0746d94ec9285561b4da9a59939931a6c088.zip |
Improves PEP8 compatibility.
Diffstat (limited to 'searx/engines/youtube.py')
-rw-r--r-- | searx/engines/youtube.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/searx/engines/youtube.py b/searx/engines/youtube.py index 208254317..6e4e8859a 100644 --- a/searx/engines/youtube.py +++ b/searx/engines/youtube.py @@ -3,7 +3,8 @@ from urllib import urlencode categories = ['videos'] -search_url = 'https://gdata.youtube.com/feeds/api/videos?alt=json&{query}&start-index={index}&max-results=25' # noqa +search_url = ('https://gdata.youtube.com/feeds/api/videos' + '?alt=json&{query}&start-index={index}&max-results=25') # noqa paging = True |