diff options
Diffstat (limited to 'host/utils/uhd_images_downloader.py.in')
-rw-r--r-- | host/utils/uhd_images_downloader.py.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/host/utils/uhd_images_downloader.py.in b/host/utils/uhd_images_downloader.py.in index be76f5b2d..6aa619660 100644 --- a/host/utils/uhd_images_downloader.py.in +++ b/host/utils/uhd_images_downloader.py.in @@ -46,8 +46,7 @@ if __name__ == "__main__": u = urllib2.urlopen(images_src) f = open(filename, "wb") meta = u.info() - #filesize = int(meta.getheaders("Content-Length")[0]) - filesize = float(int(meta.getheaders("Content-Length")[0])) + filesize = float(meta.getheaders("Content-Length")[0]) print "Downloading images from: %s" % images_src |