From: Unknown
Subject: Fix the images location on 'directoryassistant' script.
---
directoryassistant | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/directoryassistant
+++ b/directoryassistant
@@ -597,7 +597,7 @@
if (os.path.exists(filename)):
message = 'Your configfile '+filename+' does not contain\nboth the required fields ldapurl and basedn.'
else:
- message = 'Your configfile '+filename+' did not yet exist, an empty config file is created, but you have to set the correct values.'
+ message = 'Your configfile '+filename+' did not yet exist,\n an empty config file is created, but you have to set the correct values.'
fd = open(filename, 'w')
fd.write("[main]\n#ldapurl = ldap://myserver/\n#bind_dn = cn=myaccount,o=myorg\n#bind_password = mysecret\n#base_dn = ou=Mydepartment,o=myorg\n#startup_search=myname")
fd.close()