Fix OVS user switch (remove unnecessary % parameter)

This commit is contained in:
Bob Lantz
2015-01-28 17:04:58 -08:00
parent acdcf9b6ae
commit c11e9f3316
+1 -1
View File
@@ -1178,7 +1178,7 @@ class OVSSwitch( Switch ):
if not self.inband:
opts += ' other-config:disable-in-band=true'
if self.datapath == 'user':
opts += ' datapath_type=netdev' % self
opts += ' datapath_type=netdev'
if self.protocols and not self.isOldOVS():
opts += ' protocols=%s' % ( self, self.protocols )
if self.stp and self.failMode == 'standalone':