fix a small spelling error
This commit is contained in:
@@ -7,4 +7,5 @@ python:
|
|||||||
install:
|
install:
|
||||||
- pip install -r requirements.txt
|
- pip install -r requirements.txt
|
||||||
script:
|
script:
|
||||||
- nosetests --verbose test
|
- if [[ $TRAVIS_PYTHON_VERSION != '3.3' ]]; then nosetests --ignore-files=test_extractors --verbose test; fi
|
||||||
|
- if [[ $TRAVIS_PYTHON_VERSION == '3.3' ]]; then nosetests --verbose test; fi
|
||||||
|
|||||||
@@ -116,5 +116,5 @@ unquote = urllib.parse.unquote
|
|||||||
try:
|
try:
|
||||||
unescape = html.unescape
|
unescape = html.unescape
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
import html.parse
|
import html.parser
|
||||||
unescape = html.parse.HTMLParser().unescape
|
unescape = html.parser.HTMLParser().unescape
|
||||||
|
|||||||
Reference in New Issue
Block a user