From: Tony Mack Date: Tue, 8 Dec 2009 23:45:16 +0000 (+0000) Subject: import * only allowed at module level X-Git-Tag: sfa-0.9-7~176 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=5d75ac69bbf0db206830a4914e1ff2f67e5a1af3;p=sfa.git import * only allowed at module level --- diff --git a/sfa/plc/api.py b/sfa/plc/api.py index 9ed350bf..ebfe3544 100644 --- a/sfa/plc/api.py +++ b/sfa/plc/api.py @@ -139,7 +139,7 @@ class GeniAPI(BaseAPI): if not auth_hrn or hrn == self.config.SFA_INTERFACE_HRN: auth_hrn = hrn auth_info = self.auth.get_auth_info(auth_hrn) - from sfa.util.genitable import * + from sfa.util.genitable import GeniTable table = GeniTable() records = table.findObjects(hrn) if not records: @@ -313,7 +313,7 @@ class GeniAPI(BaseAPI): def fill_record_geni_info(self, record): geni_info = {} type = record['type'] - from sfa.util.genitable import * + from sfa.util.genitable import GeniTable table = GeniTable() if (type == "slice"): person_ids = record.get("person_ids", []) @@ -381,7 +381,7 @@ class GeniAPI(BaseAPI): # build a list of the new person ids, by looking up each person to get # their pointer newIdList = [] - from sfa.util.genitable import * + from sfa.util.genitable import GeniTable table = GeniTable() records = table.find({'type': 'user', 'hrn': newList}) for rec in records: