On Sat, 13 Apr 2013 23:43:55 +0900 Isaku Yamahata <[email protected]> wrote:
> > $ pep8 --version > > 1.4.5 > > ryu/ofproto/nx_match.py:743:20: E128 continuation line under-indented for > > visual indent > > ofproto_v1_0.NXM_NX_IPV6_SRC_W]) > > ^ > > ryu/ofproto/nx_match.py:764:20: E128 continuation line under-indented for > > visual indent > > ofproto_v1_0.NXM_NX_IPV6_DST_W]) > > ^ > > Signed-off-by: Isaku Yamahata <[email protected]> > --- > ryu/ofproto/nx_match.py | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) 1.4.4 doesn't complain. I applied this but I don't think that it's a good idea to check the code every time a new pep8 is released. > diff --git a/ryu/ofproto/nx_match.py b/ryu/ofproto/nx_match.py > index 6c514e6..d986ac1 100644 > --- a/ryu/ofproto/nx_match.py > +++ b/ryu/ofproto/nx_match.py > @@ -740,7 +740,7 @@ class MFIPV6(object): > @_set_nxm_headers([ofproto_v1_0.NXM_NX_IPV6_SRC, > ofproto_v1_0.NXM_NX_IPV6_SRC_W]) > @MFField.register_field_header([ofproto_v1_0.NXM_NX_IPV6_SRC, > - ofproto_v1_0.NXM_NX_IPV6_SRC_W]) > + ofproto_v1_0.NXM_NX_IPV6_SRC_W]) > class MFIPV6Src(MFIPV6, MFField): > def __init__(self, header, value, mask=None): > super(MFIPV6Src, self).__init__(header, MFIPV6Src.pack_str) > @@ -761,7 +761,7 @@ class MFIPV6Src(MFIPV6, MFField): > @_set_nxm_headers([ofproto_v1_0.NXM_NX_IPV6_DST, > ofproto_v1_0.NXM_NX_IPV6_DST_W]) > @MFField.register_field_header([ofproto_v1_0.NXM_NX_IPV6_DST, > - ofproto_v1_0.NXM_NX_IPV6_DST_W]) > + ofproto_v1_0.NXM_NX_IPV6_DST_W]) > class MFIPV6Dst(MFIPV6, MFField): > def __init__(self, header, value, mask=None): > super(MFIPV6Dst, self).__init__(header, MFIPV6Dst.pack_str) > -- > 1.7.10.4 > > > ------------------------------------------------------------------------------ > Precog is a next-generation analytics platform capable of advanced > analytics on semi-structured data. The platform includes APIs for building > apps and a phenomenal toolset for data science. Developers can use > our toolset for easy data analysis & visualization. Get a free account! > http://www2.precog.com/precogplatform/slashdotnewsletter > _______________________________________________ > Ryu-devel mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/ryu-devel ------------------------------------------------------------------------------ Precog is a next-generation analytics platform capable of advanced analytics on semi-structured data. The platform includes APIs for building apps and a phenomenal toolset for data science. Developers can use our toolset for easy data analysis & visualization. Get a free account! http://www2.precog.com/precogplatform/slashdotnewsletter _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
