From 32299a680851c5be719f29ab7aacf931a8844fe3 Mon Sep 17 00:00:00 2001 From: Bob Lantz Date: Mon, 13 Mar 2017 13:48:50 -0700 Subject: [PATCH] Restore incorrectly placed docstring --- mininet/link.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mininet/link.py b/mininet/link.py index cff0d72..b08ead5 100644 --- a/mininet/link.py +++ b/mininet/link.py @@ -530,9 +530,8 @@ class OVSLink( Link ): than ~64 OVS patch links should be used in row.""" def __init__( self, node1, node2, **kwargs ): - from mininet.node import OVSSwitch - "See Link.__init__() for options" + from mininet.node import OVSSwitch self.isPatchLink = False if ( isinstance( node1, OVSSwitch ) and isinstance( node2, OVSSwitch ) ):