Skip to content

Commit

Permalink
Merge pull request #23 from muccg/fix-typo
Browse files Browse the repository at this point in the history
too many failed login attemtps --> attempts
  • Loading branch information
sztamas authored Mar 24, 2017
2 parents af2639b + f97c633 commit ce05281
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='django-useraudit',
version='1.5.1',
version='1.5.2',
description='Django user audit utilities like logging user log in, disabling access when password expires or user is inactive',
long_description='Django user audit utilities like logging user log in, disabling access when password expires or user is inactive',
author='CCG, Murdoch University',
Expand Down
19 changes: 19 additions & 0 deletions useraudit/migrations/0007_typo.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import models, migrations


class Migration(migrations.Migration):

dependencies = [
('useraudit', '0006_add_userdeactivation_table_unicode_fixup'),
]

operations = [
migrations.AlterField(
model_name='userdeactivation',
name='reason',
field=models.CharField(null=True, max_length=2, blank=True, choices=[('AE', 'Account expired'), ('PE', 'Password expired'), ('FL', 'Too many failed login attempts')]),
),
]

0 comments on commit ce05281

Please sign in to comment.