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