From f7cb26f8938cd6b15514f6187a5a9cdd3d5e2fed Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Wed, 11 Nov 2009 19:47:44 +0000 Subject: [PATCH] change SFA_BASE_DIR to SFA_DATA_DIR --- sfa/plc/api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sfa/plc/api.py b/sfa/plc/api.py index 5af31ec2..7bfee91a 100644 --- a/sfa/plc/api.py +++ b/sfa/plc/api.py @@ -175,7 +175,7 @@ class GeniAPI: Get our credential from a remote registry using a geniclient connection """ type = 'authority' - path = self.config.SFA_BASE_DIR + path = self.config.SFA_DATA_DIR filename = ".".join([self.interface, self.hrn, type, "cred"]) cred_filename = path + os.sep + filename try: @@ -245,7 +245,7 @@ class GeniAPI: # see if this file exists # XX This is really the aggregate's credential. Using this is easier than getting # the registry's credential from iteslf (ssl errors). - ma_cred_filename = self.config.SFA_BASE_DIR + os.sep + self.interface + self.hrn + ".ma.cred" + ma_cred_filename = self.config.SFA_DATA_DIR + os.sep + self.interface + self.hrn + ".ma.cred" try: self.credential = Credential(filename = ma_cred_filename) except IOError: -- 2.43.0