mirror of
https://github.com/jazzband/django-axes.git
synced 2026-03-16 22:30:23 +00:00
Clean up quotes styling
This commit is contained in:
parent
71a7a98529
commit
da18e80569
2 changed files with 4 additions and 4 deletions
|
|
@ -50,7 +50,7 @@ add an extra cache to ``CACHES`` with a name of your choice::
|
|||
The next step is to tell axes to use this cache through adding ``AXES_CACHE``
|
||||
to your ``settings.py`` file::
|
||||
|
||||
AXES_CACHE = "axes_cache"
|
||||
AXES_CACHE = 'axes_cache'
|
||||
|
||||
There are no known problems in other cache backends such as
|
||||
``DummyCache``, ``FileBasedCache``, or ``MemcachedCache`` backends.
|
||||
|
|
|
|||
6
setup.py
6
setup.py
|
|
@ -8,10 +8,10 @@ from axes import get_version
|
|||
setup(
|
||||
name='django-axes',
|
||||
version=get_version(),
|
||||
description="Keep track of failed login attempts in Django-powered sites.",
|
||||
description='Keep track of failed login attempts in Django-powered sites.',
|
||||
long_description=(
|
||||
codecs.open("README.rst", encoding='utf-8').read() + '\n' +
|
||||
codecs.open("CHANGES.txt", encoding='utf-8').read()),
|
||||
codecs.open('README.rst', encoding='utf-8').read() + '\n' +
|
||||
codecs.open('CHANGES.txt', encoding='utf-8').read()),
|
||||
keywords='authentication django pci security'.split(),
|
||||
author='Josh VanderLinden, Philip Neustrom, Michael Blume, Camilo Nova',
|
||||
author_email='codekoala@gmail.com',
|
||||
|
|
|
|||
Loading…
Reference in a new issue