Thanks. It's my mistake. Acked-by: YAMADA Hideki <[email protected]>
(2013/04/01 15:13), YAMAMOTO Takashi wrote: > so that this is at least instantiatable. > > Signed-off-by: YAMAMOTO Takashi <[email protected]> > --- > ryu/topology/dumper.py | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/ryu/topology/dumper.py b/ryu/topology/dumper.py > index b48d06f..8aafc62 100644 > --- a/ryu/topology/dumper.py > +++ b/ryu/topology/dumper.py > @@ -30,8 +30,8 @@ class DiscoveryEventDumper(app_manager.RyuApp): > ''' This app dumps discovery events > ''' > > - def __init__(self): > - super(DiscoveryEventDumper, self).__init__() > + def __init__(self, *args, **kwargs): > + super(DiscoveryEventDumper, self).__init__(*args, **kwargs) > > # For testing when sync and async request. > # self.threads.append( > ------------------------------------------------------------------------------ Own the Future-Intel® Level Up Game Demo Contest 2013 Rise to greatness in Intel's independent game demo contest. Compete for recognition, cash, and the chance to get your game on Steam. $5K grand prize plus 10 genre and skill prizes. Submit your demo by 6/6/13. http://p.sf.net/sfu/intel_levelupd2d _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
