From da18e8056991f2fb64426415f78d10f375d9eedc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleksi=20H=C3=A4kli?= Date: Sun, 18 Feb 2018 13:53:28 +0200 Subject: [PATCH] Clean up quotes styling --- docs/configuration.rst | 2 +- setup.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/configuration.rst b/docs/configuration.rst index b8d1c7f..b5ab87e 100644 --- a/docs/configuration.rst +++ b/docs/configuration.rst @@ -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. diff --git a/setup.py b/setup.py index d0bd1a7..0a7b546 100644 --- a/setup.py +++ b/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',