Merge pull request #14 from TheBlueMatt/master
Fix download error on Win32.
This commit is contained in:
commit
be85bfa8c9
@ -61,7 +61,7 @@ def download(url, dest):
|
||||
print "Downloading from %s"%(url)
|
||||
file_name = url.split('/')[-1]
|
||||
u = urllib2.urlopen(url)
|
||||
f = open(dest, 'w')
|
||||
f = open(dest, 'wb')
|
||||
meta = u.info()
|
||||
file_size = int(meta.getheaders("Content-Length")[0])
|
||||
if quiet == 0:
|
||||
|
Loading…
Reference in New Issue
Block a user