diff options
author | Andrew Bartlett <abartlet@samba.org> | 2009-08-17 09:52:09 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2009-08-17 09:52:09 +1000 |
commit | df3ef12cf858290ffcef650a23d32ec2271648b0 (patch) | |
tree | d8444fb630f0a9057012ca1ab6704238a58217ac | |
parent | 498faae1a3d28ee49f4b8d273b5a02bc520e774b (diff) | |
download | samba-df3ef12cf858290ffcef650a23d32ec2271648b0.tar.gz samba-df3ef12cf858290ffcef650a23d32ec2271648b0.tar.bz2 samba-df3ef12cf858290ffcef650a23d32ec2271648b0.zip |
s4:provision Fix existing ldapi:// backend detection exception
Found by Oliver Liebel <oliver@itc.li>
Andrew Bartlett
-rw-r--r-- | source4/scripting/python/samba/provision.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/scripting/python/samba/provision.py b/source4/scripting/python/samba/provision.py index 5825e4726a..da1625f35d 100644 --- a/source4/scripting/python/samba/provision.py +++ b/source4/scripting/python/samba/provision.py @@ -1314,7 +1314,7 @@ class ProvisionBackend(object): except: pass - raise("Warning: Another slapd Instance seems already running on this host, listening to " + ldapi_uri + ". Please shut it down before you continue. ") + raise("Warning: Another slapd Instance seems already running on this host, listening to " + self.ldapi_uri + ". Please shut it down before you continue. ") except LdbError, e: pass |