added get_link_requests
authorTony Mack <tmack@paris.CS.Princeton.EDU>
Tue, 25 Oct 2011 23:49:18 +0000 (19:49 -0400)
committerTony Mack <tmack@paris.CS.Princeton.EDU>
Tue, 25 Oct 2011 23:49:18 +0000 (19:49 -0400)
sfa/rspecs/versions/sfav1.py

index 8ba0efb..5c4818f 100644 (file)
@@ -113,8 +113,10 @@ class SFAv1(BaseVersion):
         return nodes
 
     def get_links(self, network=None):
-        links = PGv2Link.get_links(self.xml)
-        return links
+        return PGv2Link.get_links(self.xml)
+
+    def get_link_requests(self):
+        return PGv2Link.get_links(self.xml) 
 
     def get_link(self, fromnode, tonode, network=None):
         fromsite = fromnode.getparent()