Remove bad exception
This commit is contained in:
parent
1b37f41408
commit
4c279f55cd
|
@ -25,7 +25,7 @@ def pullADSBX(planes):
|
|||
print(error_message)
|
||||
failed = True
|
||||
data = None
|
||||
except (urllib3.exceptions.RemoteDisconected, IncompleteRead, http.IncompleteRead, ConnectionResetError, requests.ChunkEncodingError, urllib3.exceptions.ProtocolError, ValueError) as error_message:
|
||||
except (IncompleteRead, http.IncompleteRead, ConnectionResetError, requests.ChunkEncodingError, urllib3.exceptions.ProtocolError, ValueError) as error_message:
|
||||
print("Connection Error")
|
||||
print(error_message)
|
||||
failed = True
|
||||
|
|
Loading…
Reference in New Issue