Fix super() typo

This commit is contained in:
Bob Lantz
2015-01-26 14:06:23 -08:00
parent bec34e7227
commit 8014a7023c
+1 -1
View File
@@ -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 )