From: Paul Vinciguerra Date: Tue, 7 May 2019 19:30:50 +0000 (-0700) Subject: Fix Exception typo in vpp_papi/vpp_transport_socket.py. X-Git-Tag: v20.01-rc0~661 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F26%2F19426%2F2;p=vpp.git Fix Exception typo in vpp_papi/vpp_transport_socket.py. Change-Id: I80ef74abcb14136984a4c94ba60414a1348015d3 Signed-off-by: Paul Vinciguerra --- diff --git a/src/vpp-api/python/vpp_papi/vpp_transport_socket.py b/src/vpp-api/python/vpp_papi/vpp_transport_socket.py index 646bca38983..80a2e88f943 100644 --- a/src/vpp-api/python/vpp_papi/vpp_transport_socket.py +++ b/src/vpp-api/python/vpp_papi/vpp_transport_socket.py @@ -180,7 +180,7 @@ class VppTransport(object): return buf if l == len(msg): return msg - raise VPPTransportSocketIOError(1, 'Unknown socket read error') + raise VppTransportSocketIOError(1, 'Unknown socket read error') def read(self): if not self.connected: