From bbeca62ccf4943a93cf6546864439f75e6fd222c Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 4 Sep 2013 13:03:37 +1200 Subject: join.py: Show which database we failed to find the DN on (clarify local v remote) Signed-off-by: Andrew Bartlett Reviewed-by: Stefan Metzmacher --- python/samba/join.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python') diff --git a/python/samba/join.py b/python/samba/join.py index cad228a71a..7c14c2adb9 100644 --- a/python/samba/join.py +++ b/python/samba/join.py @@ -302,7 +302,7 @@ class dc_join(object): res = ctx.samdb.search(base='CN=Partitions,%s' % ctx.config_dn, attrs=['fSMORoleOwner'], scope=ldb.SCOPE_BASE, controls=["extended_dn:1:1"]) if not 'fSMORoleOwner' in res[0]: - raise DCJoinException("Can't find naming master on partition DN %s" % ctx.partition_dn) + raise DCJoinException("Can't find naming master on partition DN %s in %s" % (ctx.partition_dn, ctx.samdb.url)) try: master_guid = str(misc.GUID(ldb.Dn(ctx.samdb, res[0]['fSMORoleOwner'][0]).get_extended_component('GUID'))) except KeyError: -- cgit