-
Notifications
You must be signed in to change notification settings - Fork 25
Description
Error below triggered when running python3 crossmgr-install.py install. Was more extensive but updating certificates cleared those.
`File "/Library/Frameworks/Python.framework/Versions/3.13/lib/python3.13/http/client.py", line 599, in _read_chunked
value.append(self._safe_read(amt))
~~~~~~~~~~~~~~~^^^^^
File "/Library/Frameworks/Python.framework/Versions/3.13/lib/python3.13/http/client.py", line 644, in _safe_read
raise IncompleteRead(data, amt-len(data))
http.client.IncompleteRead: IncompleteRead(5819 bytes read, 2373 more expected)
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/Users/timmockford/Downloads/crossmgr-install.py", line 761, in
dispatchargs.sub_command
~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^
File "/Users/timmockford/Downloads/crossmgr-install.py", line 755, in
'install': lambda args: install( args.full ),
~~~~~~~^^^^^^^^^^^^^
File "/Users/timmockford/Downloads/crossmgr-install.py", line 641, in install
src_download()
~~~~~~~~~~~~^^
File "/Users/timmockford/Downloads/crossmgr-install.py", line 115, in src_download
urllib.request.urlretrieve( zip_file_url, filename=zip_file_name )
~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Library/Frameworks/Python.framework/Versions/3.13/lib/python3.13/urllib/request.py", line 242, in urlretrieve
while block := fp.read(bs):
~~~~~~~^^^^
File "/Library/Frameworks/Python.framework/Versions/3.13/lib/python3.13/http/client.py", line 473, in read
return self._read_chunked(amt)
~~~~~~~~~~~~~~~~~~^^^^^
File "/Library/Frameworks/Python.framework/Versions/3.13/lib/python3.13/http/client.py", line 609, in _read_chunked
raise IncompleteRead(b''.join(value)) from exc
http.client.IncompleteRead: IncompleteRead(0 bytes read)
`