1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-31 15:21:13 +03:00

Silly variable inconsistency.

This commit is contained in:
Luke Sneeringer 2014-11-20 14:04:18 -06:00
parent 8b1f3c33a5
commit ee0e549978

View File

@ -445,7 +445,7 @@ def disallow_superuser_escalation(cls):
def fx(self, request, *a, **kw):
if not request.user.is_superuser:
is_su = request.DATA.get('is_superuser', False)
if su and su not in ('false', 'f', 'False', '0'):
if is_su and is_su not in ('false', 'f', 'False', '0'):
raise PermissionDenied('Only superusers may create '
'other superusers.')
return method(self, request, *a, **kw)