mirror of
https://github.com/StevenBlack/hosts.git
synced 2026-07-01 02:36:52 +00:00
Fix tests issues.
This patch fixes: * https://travis-ci.org/funilrys/hosts/jobs/347500695#L400 * https://travis-ci.org/funilrys/hosts/jobs/347500695#L401
This commit is contained in:
@@ -1186,6 +1186,7 @@ def domain_to_idna(line):
|
||||
return line.encode("IDNA").decode("UTF-8")
|
||||
return line.encode("UTF-8").decode("UTF-8")
|
||||
|
||||
|
||||
# Helper Functions
|
||||
def get_file_by_url(url):
|
||||
"""
|
||||
@@ -1210,7 +1211,7 @@ def get_file_by_url(url):
|
||||
|
||||
try:
|
||||
f = urlopen(url)
|
||||
soup = BeautifulSoup(f.read(),'lxml').get_text()
|
||||
soup = BeautifulSoup(f.read(), 'lxml').get_text()
|
||||
return '\n'.join(list(map(domain_to_idna, soup.split('\n'))))
|
||||
except Exception:
|
||||
print("Problem getting file: ", url)
|
||||
|
||||
Reference in New Issue
Block a user