From 7bf4304821ab70bf4c86d7139e0c1a4753f6e5b8 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Fri, 8 Apr 2016 16:25:07 +0100 Subject: [PATCH] pep8: Resolve issues in settings file Introduced in '2822854'. Signed-off-by: Stephen Finucane --- patchwork/settings/production.example.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/patchwork/settings/production.example.py b/patchwork/settings/production.example.py index 89e6b97b..408fddcd 100644 --- a/patchwork/settings/production.example.py +++ b/patchwork/settings/production.example.py @@ -75,4 +75,5 @@ DATABASES = { STATIC_ROOT = os.environ.get('STATIC_ROOT', '/srv/patchwork/htdocs/static') if django.VERSION >= (1, 7): - STATICFILES_STORAGE = 'django.contrib.staticfiles.storage.ManifestStaticFilesStorage' + STATICFILES_STORAGE = \ + 'django.contrib.staticfiles.storage.ManifestStaticFilesStorage' -- 2.47.3