OSDN Git Service

delete module version of collector agents
authort.moriyama <t.moriyama@users.sourceforge.jp>
Sun, 1 Sep 2013 15:37:53 +0000 (00:37 +0900)
committert.moriyama <t.moriyama@users.sourceforge.jp>
Sun, 1 Sep 2013 15:37:53 +0000 (00:37 +0900)
linkpair/collect/agent/commandrunner.py
linkpair/collect/agent/libvirt_agent.py
linkpair/collect/agent/linux_agent.py
linkpair/collect/agent/linuxbridge_agent.py
linkpair/collect/agent/linuxvlan_agent.py
linkpair/collect/agent/namespace_agent.py
linkpair/collect/agent/ovs_agent.py
linkpair/collect/agent/sspvxlan_agent.py
linkpair/collect/agent/veth_agent.py
linkpair/collect/utils.py

index 69a5d21..292b64e 100755 (executable)
@@ -2,8 +2,6 @@
 # -*- coding: utf-8 -*-
 #
 
-__version__ = '1.1'
-
 import sys
 import os
 import re
index d6bddbd..ef69e91 100755 (executable)
@@ -2,8 +2,6 @@
 # -*- coding: utf-8 -*-
 #
 
-__version__ = '1.1'
-
 import re
 from xml.dom import minidom
 import libvirt
index ba727f2..3834877 100755 (executable)
@@ -2,8 +2,6 @@
 # -*- coding: utf-8 -*-
 #
 
-__version__ = '1.1'
-
 import re
 from linkpair.device import Device
 from linkpair.port import Port
index fa0e8f8..99a0c2d 100755 (executable)
@@ -2,8 +2,6 @@
 # -*- coding: utf-8 -*-
 #
 
-__version__ = '1.1'
-
 import re
 from linkpair.device import Device
 from linkpair.port import Port
index 95613e0..2eae178 100755 (executable)
@@ -2,8 +2,6 @@
 # -*- coding: utf-8 -*-
 #
 
-__version__ = '1.1'
-
 import re
 import os
 from linkpair.device import Device
index f2b903d..2a9ce43 100755 (executable)
@@ -2,8 +2,6 @@
 # -*- coding: utf-8 -*-
 #
 
-__version__ = '1.1'
-
 import re
 from linkpair.device import Device
 from linkpair.port import Port
index b5a0f76..4d37321 100755 (executable)
@@ -2,8 +2,6 @@
 # -*- coding: utf-8 -*-
 #
 
-__version__ = '1.1'
-
 import re
 from linkpair.device import Device
 from linkpair.port import Port
index a466655..4c26496 100755 (executable)
@@ -2,8 +2,6 @@
 # -*- coding: utf-8 -*-
 #
 
-__version__ = '1.1'
-
 import re
 import os
 from linkpair.device import Device
index 73e01dd..0bf25e1 100755 (executable)
@@ -2,8 +2,6 @@
 # -*- coding: utf-8 -*-
 #
 
-__version__ = '1.1'
-
 import re
 from linkpair.device import Device
 from linkpair.port import Port
index 26d3670..8a52ebc 100755 (executable)
@@ -2,8 +2,6 @@
 # -*- coding: utf-8 -*-
 #
 
-__version__ = '1.1'
-
 import sys
 import os
 import re
@@ -128,7 +126,7 @@ class CollectUtils(object):
                 and linkpair.device1.label == dev2_name \
                 and linkpair.port2.label == port1_name \
                 and linkpair.port1.label == port2_name:
-                    return linkpair            
+                    return linkpair
         return self.LINKPAIR_NOT_FOUND
 
     def delete_linkpair(self, dev1_name, dev2_name, port1_name, port2_name):