ryu/lib/ofctl_v1_2.py:444:15: E127 continuation line over-indented for visual indent
Signed-off-by: TAKAHASHI Minoru <[email protected]> --- ryu/lib/ofctl_v1_2.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ryu/lib/ofctl_v1_2.py b/ryu/lib/ofctl_v1_2.py index 7534a12..ce49a45 100644 --- a/ryu/lib/ofctl_v1_2.py +++ b/ryu/lib/ofctl_v1_2.py @@ -440,8 +440,8 @@ def match_to_str(ofmatch): match = {} for match_field in ofmatch.fields: key = keys[match_field.header] - if key == 'dl_src' or key == 'dl_dst' or \ - key == 'arp_sha' or key == 'arp_tha': + if key == 'dl_src' or key == 'dl_dst' or key == 'arp_sha' or \ + key == 'arp_tha': value = match_eth_to_str(match_field.value, match_field.mask) elif key == 'ipv6_nd_tll' or key == 'ipv6_nd_sll': value = mac.haddr_to_str(match_field.value) -- 1.7.10.4 ------------------------------------------------------------------------------ Learn Graph Databases - Download FREE O'Reilly Book "Graph Databases" is the definitive new guide to graph databases and their applications. Written by three acclaimed leaders in the field, this first edition is now available. Download your free book today! http://p.sf.net/sfu/NeoTech _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
