several changes to make travis build work
- fixed html.unescape not being available on Python3.3 - removed inconsistent test result - added username/password pairs for authenticating extractors
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright 2015, 2016 Mike Fährmann
|
||||
# Copyright 2015-2017 Mike Fährmann
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License version 2 as
|
||||
@@ -113,4 +113,8 @@ else:
|
||||
|
||||
unquote = urllib.parse.unquote
|
||||
|
||||
unescape = html.unescape
|
||||
try:
|
||||
unescape = html.unescape
|
||||
except AttributeError:
|
||||
import html.parse
|
||||
unescape = html.parse.HTMLParser().unescape
|
||||
|
||||
Reference in New Issue
Block a user