mirror of
https://github.com/servo/servo.git
synced 2025-06-21 07:38:59 +01:00
Resolve tidy issues
This commit is contained in:
parent
8a401d5a7f
commit
865fb2eacb
1 changed files with 7 additions and 2 deletions
|
@ -47,7 +47,8 @@ def download(desc, src, writer):
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
chunk = resp.read(chunk_size)
|
chunk = resp.read(chunk_size)
|
||||||
if not chunk: break
|
if not chunk:
|
||||||
|
break
|
||||||
recved += len(chunk)
|
recved += len(chunk)
|
||||||
if not dumb:
|
if not dumb:
|
||||||
if fsize is not None:
|
if fsize is not None:
|
||||||
|
@ -72,15 +73,18 @@ def download(desc, src, writer):
|
||||||
|
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
|
||||||
def download_file(desc, src, dst):
|
def download_file(desc, src, dst):
|
||||||
with open(dst, 'wb') as fd:
|
with open(dst, 'wb') as fd:
|
||||||
download(desc, src, fd)
|
download(desc, src, fd)
|
||||||
|
|
||||||
|
|
||||||
def download_bytes(desc, src):
|
def download_bytes(desc, src):
|
||||||
content_writer = StringIO.StringIO()
|
content_writer = StringIO.StringIO()
|
||||||
download(desc, src, content_writer)
|
download(desc, src, content_writer)
|
||||||
return content_writer.getvalue()
|
return content_writer.getvalue()
|
||||||
|
|
||||||
|
|
||||||
def extract(src, dst, movedir=None):
|
def extract(src, dst, movedir=None):
|
||||||
tarfile.open(src).extractall(dst)
|
tarfile.open(src).extractall(dst)
|
||||||
|
|
||||||
|
@ -218,7 +222,8 @@ class MachCommands(CommandBase):
|
||||||
print("Use |bootstrap-hsts-preload --force| to download again.")
|
print("Use |bootstrap-hsts-preload --force| to download again.")
|
||||||
return
|
return
|
||||||
|
|
||||||
chromium_hsts_url = "https://chromium.googlesource.com/chromium/src/net/+/master/http/transport_security_state_static.json?format=TEXT"
|
chromium_hsts_url = "https://chromium.googlesource.com/chromium/src" + \
|
||||||
|
"/net/+/master/http/transport_security_state_static.json?format=TEXT"
|
||||||
|
|
||||||
try:
|
try:
|
||||||
content_base64 = download_bytes("Chromium HSTS preload list", chromium_hsts_url)
|
content_base64 = download_bytes("Chromium HSTS preload list", chromium_hsts_url)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue