Skip to content
Snippets Groups Projects
Commit 4ac45a39 authored by Bob Lantz's avatar Bob Lantz
Browse files

Fix super() arg in DataController

parent d7e01bb8
No related branches found
No related tags found
No related merge requests found
......@@ -28,7 +28,7 @@
class DataController( Controller ):
"""Data Network Controller.
patched to avoid checkListening error and to delete intfs"""
def checkListening( self ):
"Ignore spurious error"
pass
......@@ -36,7 +36,8 @@ def checkListening( self ):
def stop( self, *args, **kwargs ):
"Make sure intfs are deleted"
kwargs.update( deleteIntfs=True )
super( Controller, self ).stop( *args, **kwargs )
super( DataController, self ).stop( *args, **kwargs )
class MininetFacade( object ):
"""Mininet object facade that allows a single CLI to
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment