diff options
author | James Taylor <user234683@users.noreply.github.com> | 2018-07-09 03:01:33 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2018-07-09 03:01:33 -0700 |
commit | 1fa66ffb0f6d7bec16faab45d9551f94cb662d4d (patch) | |
tree | 7b22f0100168f3301adb21ace74adc39d93ff802 /youtube/search.py | |
parent | 52835db0a83e071ffe72be80fa68445c370b47cb (diff) | |
download | yt-local-1fa66ffb0f6d7bec16faab45d9551f94cb662d4d.tar.lz yt-local-1fa66ffb0f6d7bec16faab45d9551f94cb662d4d.tar.xz yt-local-1fa66ffb0f6d7bec16faab45d9551f94cb662d4d.zip |
fix search box not having query searched for in results page
Diffstat (limited to 'youtube/search.py')
-rw-r--r-- | youtube/search.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube/search.py b/youtube/search.py index 09a161e..13daa2c 100644 --- a/youtube/search.py +++ b/youtube/search.py @@ -129,7 +129,7 @@ def get_search_page(query_string, parameters=()): result = Template(yt_search_results_template).substitute( - header = common.get_header(), + header = common.get_header(query), results = result_list_html, page_title = query + " - Search", search_box_value = html.escape(query), |