diff options
author | stepshal <nessento@openmailbox.org> | 2016-07-10 21:44:27 +0700 |
---|---|---|
committer | stepshal <nessento@openmailbox.org> | 2016-07-10 21:44:27 +0700 |
commit | cd9b494cb5871b2011893f19647e7651fb0382b6 (patch) | |
tree | 6288bcf3c597180bb2594a5f9f213aca8bf34737 /searx/utils.py | |
parent | 678b87f9d5969668a07c36f9b80be5a5b2d08587 (diff) | |
download | searxng-cd9b494cb5871b2011893f19647e7651fb0382b6.tar.gz searxng-cd9b494cb5871b2011893f19647e7651fb0382b6.zip |
Fix quantity of blank lines after code object.
Diffstat (limited to 'searx/utils.py')
-rw-r--r-- | searx/utils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/searx/utils.py b/searx/utils.py index a444cd3cf..219135a4b 100644 --- a/searx/utils.py +++ b/searx/utils.py @@ -74,6 +74,7 @@ def highlight_content(content, query): class HTMLTextExtractor(HTMLParser): + def __init__(self): HTMLParser.__init__(self) self.result = [] |