mirror of
https://github.com/jazzband/django-axes.git
synced 2026-03-16 22:30:23 +00:00
Replaced six imports with django.utils.six ones
This commit is contained in:
parent
c90ee0562a
commit
f6f494cc11
2 changed files with 2 additions and 2 deletions
|
|
@ -24,7 +24,7 @@ from axes.models import AccessLog
|
|||
from axes.models import AccessAttempt
|
||||
from axes.signals import user_locked_out
|
||||
import axes
|
||||
import six
|
||||
from django.utils import six
|
||||
|
||||
|
||||
# see if the user has overridden the failure limit
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
from django.db import models
|
||||
import six
|
||||
from django.utils import six
|
||||
|
||||
class CommonAccess(models.Model):
|
||||
user_agent = models.CharField(
|
||||
|
|
|
|||
Loading…
Reference in a new issue