Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion knox/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def compare_digest(a, b):

from django.contrib.auth import get_user_model
from django.utils import timezone
from django.utils.translation import ugettext_lazy as _
from django.utils.translation import gettext_lazy as _
from rest_framework import exceptions
from rest_framework.authentication import (
BaseAuthentication, get_authorization_header,
Expand Down
2 changes: 1 addition & 1 deletion knox/signals.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import django.dispatch

token_expired = django.dispatch.Signal(providing_args=["username", "source"])
token_expired = django.dispatch.Signal()
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# https://packaging.python.org/en/latest/single_source_version.html
version='4.1.0',
version='4.1.1',
description='Authentication for django rest framework',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down