Revert "Merge pull request #1589 from castrapel/issue_1570_ignorecasev2"

This reverts commit a21b71a0e2, reversing
changes made to 075b18e5db.
This commit is contained in:
Curtis Castrapel 2018-08-22 13:17:33 -07:00
parent a21b71a0e2
commit bc88d3514c
1 changed files with 0 additions and 3 deletions

View File

@ -29,9 +29,6 @@ class CertificatePermission(Permission):
needs = [RoleNeed('admin'), RoleNeed(owner), RoleNeed('creator')]
for r in roles:
needs.append(CertificateOwnerNeed(str(r)))
# Backwards compatibility with mixed-case role names
if str(r) != str(r).lower():
needs.append(CertificateOwnerNeed(str(r).lower()))
super(CertificatePermission, self).__init__(*needs)