Skip to content

Commit

Permalink
topology/dumper: fix RyuApp.__init__ signature
Browse files Browse the repository at this point in the history
so that this is at least instantiatable.

Signed-off-by: YAMAMOTO Takashi <yamamoto@valinux.co.jp>
Acked-by: YAMADA Hideki <yamada.hideki@po.ntts.co.jp>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
  • Loading branch information
yamt authored and fujita committed Apr 1, 2013
1 parent a744128 commit 29ada11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ryu/topology/dumper.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 29ada11

Please sign in to comment.