From 95d0bb446461428f949cbbb010f85fabb9d7eb51 Mon Sep 17 00:00:00 2001 From: Lee Unsworth Date: Sun, 9 Dec 2018 13:45:27 +0000 Subject: [PATCH 1/2] Fixes concatenation of installed apps --- src/djangoreactredux/settings/prod.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/djangoreactredux/settings/prod.py b/src/djangoreactredux/settings/prod.py index dcb4225e..54b1183c 100644 --- a/src/djangoreactredux/settings/prod.py +++ b/src/djangoreactredux/settings/prod.py @@ -29,9 +29,9 @@ 'dsn': '', } -INSTALLED_APPS = INSTALLED_APPS + ( # NOQA (ignore all errors on this line) +INSTALLED_APPS = INSTALLED_APPS + [ # NOQA (ignore all errors on this line) 'raven.contrib.django.raven_compat', -) +] # ####### Logging From 4f025322ebd78972f1cb03da32958154115a61b3 Mon Sep 17 00:00:00 2001 From: Lee Unsworth Date: Sun, 9 Dec 2018 14:09:44 +0000 Subject: [PATCH 2/2] Updates prospector version to fix build --- py-requirements/dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-requirements/dev.txt b/py-requirements/dev.txt index 3071ab78..bf78c224 100644 --- a/py-requirements/dev.txt +++ b/py-requirements/dev.txt @@ -3,7 +3,7 @@ mock==2.0.0 factory-boy==2.9.2 -prospector==0.12.7 +prospector==1.1.6.2 bandit==1.4.0 pytest==3.2.1