From df3ef12cf858290ffcef650a23d32ec2271648b0 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 17 Aug 2009 09:52:09 +1000 Subject: [PATCH] s4:provision Fix existing ldapi:// backend detection exception Found by Oliver Liebel Andrew Bartlett --- source4/scripting/python/samba/provision.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source4/scripting/python/samba/provision.py b/source4/scripting/python/samba/provision.py index 5825e4726a58..da1625f35de5 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 -- 2.34.1