m = ldap.initialize(server)
try:
m.start_tls_s()
except ldap.LDAPError, e:
print e
This part of a python script. I am getting the error in the line "except ldap.LDAPError, e:". But it seems to be right. Can anyone help?
Thanks!