Comment 8 for bug 1324592

Revision history for this message
Morgan Fainberg (mdrnstm) wrote : Re: Trust scope can be circumvented by chaining trusts

Minor Issue on the first pass, the patch has an untranslated string in it:

 raise exception.Forbidden(
+ 'Cannot create a trust with a trust scoped token.')

Should be:

 raise exception.Forbidden(
+ _('Cannot create a trust with a trust scoped token.'))

Will look again once I'm back online see if anything else stands out.