Merge pull request #14 from TheBlueMatt/master

Fix download error on Win32.
This commit is contained in:
Dev Random 2012-06-11 20:32:44 -07:00
commit be85bfa8c9

View File

@ -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: