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.
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.