From 93be1d0401a39507d675ea499d37ede270bd3eef Mon Sep 17 00:00:00 2001 From: Bob Lantz Date: Wed, 4 Feb 2015 04:44:55 -0800 Subject: [PATCH] Fix OVS protocols option --- mininet/node.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mininet/node.py b/mininet/node.py index 365fe57..cd7ecd2 100644 --- a/mininet/node.py +++ b/mininet/node.py @@ -1181,7 +1181,7 @@ class OVSSwitch( Switch ): if self.datapath == 'user': opts += ' datapath_type=netdev' if self.protocols and not self.isOldOVS(): - opts += ' protocols=%s' % ( self, self.protocols ) + opts += ' protocols=%s' % self.protocols if self.stp and self.failMode == 'standalone': opts += ' stp_enable=true' % self return opts