mirror of
https://github.com/moparisthebest/SickRage
synced 2024-12-12 02:52:20 -05:00
download_file helper function now decodes unicode on the fly
This commit is contained in:
parent
ef9334fa6a
commit
76062ae2a7
@ -1207,7 +1207,7 @@ def download_file(url, filename, session=None):
|
||||
return False
|
||||
|
||||
with open(filename, 'wb') as fp:
|
||||
for chunk in resp.iter_content(chunk_size=1024):
|
||||
for chunk in resp.iter_content(chunk_size=1024, decode_unicode=True):
|
||||
if chunk:
|
||||
fp.write(chunk)
|
||||
fp.flush()
|
||||
|
@ -21,11 +21,11 @@ from __future__ import with_statement
|
||||
|
||||
import unittest
|
||||
import sys, os.path
|
||||
import urlparse
|
||||
|
||||
sys.path.append(os.path.abspath('..'))
|
||||
sys.path.append(os.path.abspath('../lib'))
|
||||
|
||||
import urlparse
|
||||
import test_lib as test
|
||||
from bs4 import BeautifulSoup
|
||||
from sickbeard.helpers import getURL
|
||||
|
Loading…
Reference in New Issue
Block a user