Skip to content

Commit 9a01b20

Browse files
Bug fix; fix an error introduced when converting to Python 3 print function syntax.
1 parent 7499c36 commit 9a01b20

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/download_unpack.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
elif sys.version_info[0] == 3:
3737
import urllib.request as urllib2
3838

39+
3940
def download_file(url, out_file, user_agent=None):
4041
print('Downloading: {}'.format(url))
4142
filedata = None
@@ -61,7 +62,7 @@ def unpack_zip_archive(input_file, output_dir):
6162

6263
def unpack_tarball_archive(input_file, output_dir):
6364
with tarfile.open(input_file, 'r') as f:
64-
print('Extracting: {}'.format(output_dir)
65+
print('Extracting: {}'.format(output_dir))
6566
f.extractall(output_dir)
6667
return
6768

0 commit comments

Comments
 (0)