On Wed, 24 Apr 2013 12:09:53 +0800 Can Zhang <[email protected]> wrote: > add super().__init__() > > Signed-off-by: Can Zhang <[email protected]> > --- > ryu/ofproto/ofproto_v1_0_parser.py | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/ryu/ofproto/ofproto_v1_0_parser.py > b/ryu/ofproto/ofproto_v1_0_parser.py > index a9520aa..5b47681 100644 > --- a/ryu/ofproto/ofproto_v1_0_parser.py > +++ b/ryu/ofproto/ofproto_v1_0_parser.py > @@ -94,6 +94,7 @@ class OFPMatch(object): > def __init__(self, wildcards, in_port, dl_src, dl_dst, dl_vlan, > dl_vlan_pcp, dl_type, nw_tos, nw_proto, nw_src, > nw_dst, tp_src, tp_dst): > + super(OFPMatch, self).__init__() > self.wildcards = wildcards > self.in_port = in_port > if dl_src == 0:
Please fold this into the previous patch. ------------------------------------------------------------------------------ Try New Relic Now & We'll Send You this Cool Shirt New Relic is the only SaaS-based application performance monitoring service that delivers powerful full stack analytics. Optimize and monitor your browser, app, & servers with just a few lines of code. Try New Relic and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_apr _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
