mirror of
https://github.com/ansible/awx.git
synced 2026-05-08 01:47:35 -02:30
Remove stray print
This commit is contained in:
@@ -610,7 +610,6 @@ class AuthTokenView(APIView):
|
|||||||
return Response(serializer.errors, status=status.HTTP_400_BAD_REQUEST)
|
return Response(serializer.errors, status=status.HTTP_400_BAD_REQUEST)
|
||||||
|
|
||||||
def delete(self, request):
|
def delete(self, request):
|
||||||
print request.META
|
|
||||||
if 'HTTP_AUTHORIZATION' in request.META:
|
if 'HTTP_AUTHORIZATION' in request.META:
|
||||||
token_match = re.match("Token\s(.+)", request.META['HTTP_AUTHORIZATION'])
|
token_match = re.match("Token\s(.+)", request.META['HTTP_AUTHORIZATION'])
|
||||||
if token_match:
|
if token_match:
|
||||||
|
|||||||
Reference in New Issue
Block a user