From 8014a7023c3385ef6d4f89cde27b358fb390f349 Mon Sep 17 00:00:00 2001 From: Bob Lantz Date: Thu, 22 Jan 2015 10:01:17 -0800 Subject: [PATCH] Fix super() typo --- mininet/node.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mininet/node.py b/mininet/node.py index e08739c..dfc0b44 100644 --- a/mininet/node.py +++ b/mininet/node.py @@ -1299,7 +1299,7 @@ class OVSBatch( OVSSwitch ): def vsctl( self, *args, **kwargs ): "Append ovs-vsctl command to list for later execution" if self.started: - return super( OVSBridge, self).vsctl( *args, **kwargs ) + return super( OVSBatch, self).vsctl( *args, **kwargs ) cmd = ' '.join( str( arg ).strip() for arg in args ) self.commands.append( cmd )