We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3c27ea commit c1afb36Copy full SHA for c1afb36
platformio/package/download.py
@@ -34,7 +34,7 @@ def __init__(self, url, dest_dir=None):
34
url,
35
stream=True,
36
)
37
- if self._http_response.status_code != 200:
+ if self._http_response.status_code not in (200, 203):
38
raise PackageException(
39
"Got the unrecognized status code '{0}' when downloaded {1}".format(
40
self._http_response.status_code, url
0 commit comments