summaryrefslogtreecommitdiffstats
path: root/settings.py.default
diff options
context:
space:
mode:
authorAlexander Sulfrian <alex@spline.inf.fu-berlin.de>2016-01-12 19:10:34 +0100
committerAlexander Sulfrian <alex@spline.inf.fu-berlin.de>2016-01-12 19:13:32 +0100
commit9b219c587305961e8710ea475453ed40c264853b (patch)
treed0a14a6f8cafa0dcb055d7b8c017f08015cd5475 /settings.py.default
parentb2cd06183fd7f4a06758f9bdd423089b111f42ff (diff)
downloadpadlite-teams-master.tar.gz
padlite-teams-master.tar.bz2
padlite-teams-master.zip
utils: Drop python-ldap in favour of ldap3HEADmaster
The ldap3 library is python3 compatible and more future proof.
Diffstat (limited to 'settings.py.default')
-rw-r--r--settings.py.default2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings.py.default b/settings.py.default
index d38ae99..c63b3e6 100644
--- a/settings.py.default
+++ b/settings.py.default
@@ -5,7 +5,7 @@ PAD = {
LDAP = {
'host': 'ldaps://host',
- 'base_dn': [('ou', 'people'), ('dc', 'example'), ('dc', 'org')],
+ 'base_dn': ['ou=people', 'dc=example', 'dc=org'],
}
SQLALCHEMY_DATABASE_URI = 'sqlite:///example.db'