From ac15e7fc07330ee2da166cc42a8a59fac7613c06 Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Mon, 19 Mar 2012 11:42:46 -0400 Subject: [PATCH] fix AttributeError --- sfa/importer/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sfa/importer/__init__.py b/sfa/importer/__init__.py index 84e59924..9fc4e2b0 100644 --- a/sfa/importer/__init__.py +++ b/sfa/importer/__init__.py @@ -77,9 +77,9 @@ class Importer: """ # just create certs for all sfa interfaces even if they # aren't enabled - auth_info = self.auth_hierarchy.get_auth_info(self.interface_hrn) + auth_info = self.auth_hierarchy.get_auth_info(self.config.SFA_INTERFACE_HRN) pkey = auth_info.get_pkey_object() - hrn=self.interface_hrn + hrn=self.config.SFA_INTERFACE_HRN for type in [ 'authority+sa', 'authority+am', 'authority+sm', ]: urn = hrn_to_urn(hrn, type) gid = self.auth_hierarchy.create_gid(urn, create_uuid(), pkey) -- 2.47.0