From 4126e6565c7266066cb34bc1f696ccef243f3271 Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Tue, 6 Apr 2010 19:28:54 +0000 Subject: [PATCH] fix typo --- sfa/methods/get_trusted_certs.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sfa/methods/get_trusted_certs.py b/sfa/methods/get_trusted_certs.py index 41563a21..334734b2 100644 --- a/sfa/methods/get_trusted_certs.py +++ b/sfa/methods/get_trusted_certs.py @@ -26,11 +26,12 @@ class get_trusted_certs(Method): # If cred is not specified just return the gid for this interface. # This is true when when a peer is attempting to initiate federation # with this interface + print cred if not cred: gid_strings = [] for gid in self.api.auth.trusted_cert_list: if gid.get_hrn() == self.api.config.SFA_INTERFACE_HRN: - gid_strings.append[gid.save_to_string(save_parents=True)] + gid_strings.append(gid.save_to_string(save_parents=True)) return gid_strings # authenticate the cred -- 2.43.0