Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/appstore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2017-04-04 21:51:09 +0300
committerBernhard Posselt <dev@bernhard-posselt.com>2017-04-04 21:51:09 +0300
commit667629455ff45c7e90cbf2f553568247ac6ef3cd (patch)
treeca4db4d4c3b73662bf92e2b5ce83b60da77ee3b7 /scripts
parent74056236132a9a65034d0a6758d56c7dc8373c6b (diff)
migrate default settings for development to new style
Diffstat (limited to 'scripts')
-rw-r--r--scripts/development/settings/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/development/settings/base.py b/scripts/development/settings/base.py
index c7bbb77293..455b40f28a 100644
--- a/scripts/development/settings/base.py
+++ b/scripts/development/settings/base.py
@@ -8,6 +8,6 @@ RECAPTCHA_PRIVATE_KEY = '<RECAPTCHA_PRIVATE_KEY>'
EMAIL_HOST = 'localhost'
DEFAULT_FROM_EMAIL = 'Nextcloud App Store <appstore@nextcloud.com>'
INSTALLED_APPS.append('debug_toolbar')
-MIDDLEWARE_CLASSES.append('debug_toolbar.middleware.DebugToolbarMiddleware')
+MIDDLEWARE.append('debug_toolbar.middleware.DebugToolbarMiddleware')
INTERNAL_IPS = ('127.0.0.1',)
VALIDATE_CERTIFICATES = False