diff --git a/seafile-ldap.py b/seafile-ldap.py index 16e17bf..d9470c6 100644 --- a/seafile-ldap.py +++ b/seafile-ldap.py @@ -163,7 +163,7 @@ cnx.close() # if they are not in the sql table, insert a new row to add them # if they are disabled in the sql table, enable them for ldapUser in ldapUsers: - logger.debug("Checking if LDAP user {0} is in SQl Table".format(ldapUser.mail) + logger.debug("Checking if LDAP user {0} is in SQl Table".format(ldapUser.mail)) cnx = mysql.connector.connect(**dbconfig) cursor = cnx.cursor() query = "SELECT * FROM LDAPUsers WHERE email = '{0}'".format(ldapUser.mail)