Signed-off-by: Shinpei Muraoka <[email protected]>
---
ryu/lib/packet/bgp.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/ryu/lib/packet/bgp.py b/ryu/lib/packet/bgp.py
index 29c10a4..8359412 100644
--- a/ryu/lib/packet/bgp.py
+++ b/ryu/lib/packet/bgp.py
@@ -3579,9 +3579,9 @@ class PmsiTunnelIdIngressReplication(_PmsiTunnelId):
@classmethod
def parser(cls, buf):
- (tunnel_endpoint_ip,
- ) = struct.unpack_from(cls._VALUE_PACK_STR % len(buf),
- six.binary_type(buf))
+ (tunnel_endpoint_ip, ) = struct.unpack_from(
+ cls._VALUE_PACK_STR % len(buf),
+ six.binary_type(buf))
return cls(tunnel_endpoint_ip=ip.bin_to_text(tunnel_endpoint_ip))
def serialize(self):
--
2.7.4
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
_______________________________________________
Ryu-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ryu-devel