From: Tony Mack Date: Mon, 10 Sep 2012 23:48:54 +0000 (-0400) Subject: fix AttributeError X-Git-Tag: sfa-2.1-14~6 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;ds=sidebyside;h=549f0d5b587e3306e1df3140d6ca10c979c9934b;p=sfa.git fix AttributeError --- 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):