Fix download error on Win32.

lxcbr
Matt Corallo 12 years ago
parent 74652f1881
commit 5a40638b83

@ -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…
Cancel
Save