No need to assume integers
authorAndy Bavier <acb@cs.princeton.edu>
Wed, 5 Aug 2009 12:53:13 +0000 (12:53 +0000)
committerAndy Bavier <acb@cs.princeton.edu>
Wed, 5 Aug 2009 12:53:13 +0000 (12:53 +0000)
NodeManager-topo.spec
topo.py

index 040edad..f1f2631 100644 (file)
@@ -2,7 +2,7 @@
 
 Name:          NodeManager-topo
 Version:       0.5
-Release:       4
+Release:       5
 Summary:       Plugin supporting creating a default virtual topology.
 
 Group:         System Environment/Daemons
diff --git a/topo.py b/topo.py
index c895741..03c2636 100755 (executable)
--- a/topo.py
+++ b/topo.py
@@ -135,13 +135,13 @@ def clean_up_old_virtual_links():
     for iface in old_ifaces:
         m = re.match(pattern1, iface)
         if m:
-            key = int(m.group(1))
-            node = int(m.group(2))
+            key = m.group(1)
+            node = m.group(2)
             teardown_virtual_link(key, node)
 
         m = re.match(pattern2, iface)
         if m:
-            key = int(m.group(1))
+            key = m.group(1)
             teardown_nat(key)
     return