Check that the headers are actually provided.

This commit is contained in:
Johnny 2017-05-17 11:08:50 +02:00
parent 87c2a5bc97
commit 5d309af86f

View File

@ -79,7 +79,7 @@ class Request(dict):
:return: token related to request :return: token related to request
""" """
auth_header = self.headers.get('Authorization') auth_header = self.headers.get('Authorization')
if 'Token ' in auth_header: if auth_header is not None and 'Token ' in auth_header:
return auth_header.partition('Token ')[-1] return auth_header.partition('Token ')[-1]
else: else:
return auth_header return auth_header