Fix error type, thanks patlu

This commit is contained in:
Micke Nordin 2023-06-26 10:54:49 +02:00
parent 5b039dc8da
commit 5433992395
Signed by untrusted user who does not match committer: micke
GPG key ID: 0DA0A7A5708FE257

View file

@ -308,7 +308,7 @@ def main() -> int:
except KeyError: except KeyError:
output(response.json()) output(response.json())
return 1 return 1
except json.JSONDecodeError: except requests.exceptions.JSONDecodeError:
output( output(
error("Could not decode api response as JSON", "Could not decode")) error("Could not decode api response as JSON", "Could not decode"))
return 1 return 1