Clean up quotes styling

This commit is contained in:
Aleksi Häkli 2018-02-18 13:53:28 +02:00
parent 71a7a98529
commit da18e80569
2 changed files with 4 additions and 4 deletions

View file

@ -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.

View file

@ -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',