From 549f0d5b587e3306e1df3140d6ca10c979c9934b Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Mon, 10 Sep 2012 19:48:54 -0400 Subject: [PATCH] fix AttributeError --- sfa/trust/credential.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sfa/trust/credential.py b/sfa/trust/credential.py index 9ccf18fa..8631f1b6 100644 --- a/sfa/trust/credential.py +++ b/sfa/trust/credential.py @@ -276,7 +276,7 @@ class Credential(object): def get_subject(self): if not self.gidObject: self.decode() - return self.gidObject.get_printable_subject() + return self.gidObject.get_subject() # sounds like this should be __repr__ instead ?? def get_summary_tostring(self): -- 2.47.0