Fix coding stype as per PEP8 (#1105)

This commit is contained in:
Marcel Hecko 2018-03-04 21:01:17 +01:00 committed by Me No Dev
parent 7aa7c3f0dd
commit e2f7736cf0

20
tools/get.py Normal file → Executable file
View File

@ -1,9 +1,16 @@
#!/usr/bin/env python
# This script will download and extract required tools into the current directory.
# Tools list is obtained from package/package_esp8266com_index.template.json file.
# Written by Ivan Grokhotkov, 2015.
#
"""Script to download and extract tools
This script will download and extract required tools into the current directory.
Tools list is obtained from package/package_esp8266com_index.template.json file.
"""
from __future__ import print_function
__author__ = "Ivan Grokhotkov"
__version__ = "2015"
import os
import shutil
import errno
@ -15,6 +22,7 @@ import sys
import tarfile
import zipfile
import re
if sys.version_info[0] == 3:
from urllib.request import urlretrieve
unicode = lambda s: str(s)
@ -55,7 +63,7 @@ def unpack(filename, destination):
if filename.endswith('tar.gz'):
tfile = tarfile.open(filename, 'r:gz')
tfile.extractall(destination)
dirname= tfile.getnames()[0]
dirname = tfile.getnames()[0]
elif filename.endswith('zip'):
zfile = zipfile.ZipFile(filename)
zfile.extractall(destination)
@ -78,7 +86,7 @@ def get_tool(tool):
url = tool['url']
#real_hash = tool['checksum'].split(':')[1]
if not os.path.isfile(local_path):
print('Downloading ' + archive_name);
print('Downloading ' + archive_name)
sys.stdout.flush()
if 'CYGWIN_NT' in sys_name:
import ssl