From 2f1fe8af2203ac918ec97d17322282428cae5b96 Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Thu, 11 Aug 2016 09:22:23 +0530 Subject: [PATCH] Remove unused setting LOGOUT_URL Django 1.10 officially does not use the setting LOGOUT_URL anymore. Django stronghold incorrectly uses it as a URL rather than named url. --- plinth/__main__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/plinth/__main__.py b/plinth/__main__.py index 72b551da3..394c1fd82 100644 --- a/plinth/__main__.py +++ b/plinth/__main__.py @@ -217,7 +217,6 @@ def configure_django(): LOGGING=logging_configuration, LOGIN_URL='users:login', LOGIN_REDIRECT_URL='apps:index', - LOGOUT_URL='users:logout', MESSAGE_TAGS={message_constants.ERROR: 'danger'}, MIDDLEWARE_CLASSES=( 'django.contrib.sessions.middleware.SessionMiddleware',