From 435093e6854afbfca10e442db87af09a58a9ba54 Mon Sep 17 00:00:00 2001 From: John Gaunt Date: Tue, 12 Oct 2021 09:16:33 -0400 Subject: [PATCH] updated boolean for the ssl variable --- seafile-ldap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seafile-ldap.py b/seafile-ldap.py index 23777e1..b1fd17a 100644 --- a/seafile-ldap.py +++ b/seafile-ldap.py @@ -9,7 +9,7 @@ config.read(cwd + '/config.ini') serverDNS = config['LDAP SERVER']['server'] serverPort = config['LDAP SERVER']['port'] -serverSSL = config['LDAP SERVER']['ssl'] +serverSSL = config['LDAP SERVER'].getboolean('ssl') bindAccount = config['Bind Account']['username'] bindPassword = config['Bind Account']['password']