mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-19 01:35:24 +01:00
Pylint fixes.
This commit is contained in:
parent
ac010bc1a0
commit
d83f810773
1 changed files with 2 additions and 2 deletions
|
|
@ -36,7 +36,7 @@ class SysGeneral:
|
||||||
readable_hash = hashlib.sha256(downloaded_content).hexdigest()
|
readable_hash = hashlib.sha256(downloaded_content).hexdigest()
|
||||||
if expected_hash == readable_hash:
|
if expected_hash == readable_hash:
|
||||||
return
|
return
|
||||||
raise Exception(f"Checksum mismatch for file {os.path.basename(file_name)}:\n\
|
raise ValueError(f"Checksum mismatch for file {os.path.basename(file_name)}:\n\
|
||||||
expected: {expected_hash}\n\
|
expected: {expected_hash}\n\
|
||||||
actual: {readable_hash}\n\
|
actual: {readable_hash}\n\
|
||||||
When in doubt, try deleting the file in question -- it will be downloaded again when running \
|
When in doubt, try deleting the file in question -- it will be downloaded again when running \
|
||||||
|
|
@ -64,7 +64,7 @@ this script the next time")
|
||||||
with open(abs_file_name, 'wb') as target_file:
|
with open(abs_file_name, 'wb') as target_file:
|
||||||
target_file.write(response.raw.read())
|
target_file.write(response.raw.read())
|
||||||
else:
|
else:
|
||||||
raise Exception("Download failed.")
|
raise requests.HTTPError("Download failed.")
|
||||||
return abs_file_name
|
return abs_file_name
|
||||||
|
|
||||||
def get_packages(self, source_manifest):
|
def get_packages(self, source_manifest):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue