Fix super() arg in DataController
This commit is contained in:
@@ -36,7 +36,8 @@ class DataController( Controller ):
|
|||||||
def stop( self, *args, **kwargs ):
|
def stop( self, *args, **kwargs ):
|
||||||
"Make sure intfs are deleted"
|
"Make sure intfs are deleted"
|
||||||
kwargs.update( deleteIntfs=True )
|
kwargs.update( deleteIntfs=True )
|
||||||
super( Controller, self ).stop( *args, **kwargs )
|
super( DataController, self ).stop( *args, **kwargs )
|
||||||
|
|
||||||
|
|
||||||
class MininetFacade( object ):
|
class MininetFacade( object ):
|
||||||
"""Mininet object facade that allows a single CLI to
|
"""Mininet object facade that allows a single CLI to
|
||||||
|
|||||||
Reference in New Issue
Block a user