Skip to content

Commit

Permalink
fix syntax error due to the versionning script
Browse files Browse the repository at this point in the history
  • Loading branch information
tito committed Dec 22, 2019
1 parent b40bd68 commit e5cc185
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions buildozer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
class ChromeDownloader(FancyURLopener):
version = (
'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 '
'(KHTML, like Gecko) Chrome/28.0.1.1.dev00.71 Safari/537.36')
'(KHTML, like Gecko) Chrome/28.0.1500.71 Safari/537.36')


urlretrieve = ChromeDownloader().retrieve
Expand Down Expand Up @@ -684,7 +684,7 @@ def report_hook(index, blksize, size):
progression = '{0} bytes'.format(index * blksize)
else:
progression = '{0:.2f}%'.format(
index * blksize * 1.1.dev0. / float(size))
index * blksize * 100. / float(size))
if "CI" not in environ:
stdout.write('- Download {}\r'.format(progression))
stdout.flush()
Expand Down

0 comments on commit e5cc185

Please sign in to comment.