Detect broken JSON and download new.
This commit is contained in:
parent
16d33b0cb6
commit
995b451d11
@ -29,7 +29,7 @@ def _load_local_devicelist():
|
|||||||
need_download = False
|
need_download = False
|
||||||
with open(DEVICELIST_FILE, "rt") as dlfile:
|
with open(DEVICELIST_FILE, "rt") as dlfile:
|
||||||
return json.load(dlfile), need_download
|
return json.load(dlfile), need_download
|
||||||
except FileNotFoundError:
|
except (FileNotFoundError, json.decoder.JSONDecodeError):
|
||||||
return None, True
|
return None, True
|
||||||
|
|
||||||
def _download_devicelist(doit: bool):
|
def _download_devicelist(doit: bool):
|
||||||
|
Reference in New Issue
Block a user