Fix super() arg in DataController

This commit is contained in:
Bob Lantz
2015-02-04 04:43:23 -08:00
parent d7e01bb821
commit 4ac45a3967
+3 -2
View File
@@ -28,7 +28,7 @@ from mininet.log import setLogLevel, info
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 @@ class DataController( Controller ):
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