diff --git a/app/routes.py b/app/routes.py index c18da81..5f7d08f 100644 --- a/app/routes.py +++ b/app/routes.py @@ -252,7 +252,7 @@ def search(): # Return 503 if temporarily blocked by captcha resp_code = 503 if has_captcha(str(response)) else 200 - response=bold_search_terms(response,query) + response = bold_search_terms(response, query) # Feature to display IP address if search_util.check_kw_ip(): html_soup = bsoup(response, "html.parser")