From a3bb3007ed6e44bb6c668b85e4209a5d9c88f580 Mon Sep 17 00:00:00 2001 From: Rowland Penny Date: Thu, 31 Mar 2016 13:24:28 +0100 Subject: [PATCH 2/2] Bug 11818 : obvious missing word When trying to demote a dc, 'remove_dc.remove_sysvol_references' is sent 'remote_samdb, dc_name' , it expects 'remote_samdb, logger, dc_name' Signed-off-by: Rowland Penny --- python/samba/netcmd/domain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/samba/netcmd/domain.py b/python/samba/netcmd/domain.py index 6357144..68775ec 100644 --- a/python/samba/netcmd/domain.py +++ b/python/samba/netcmd/domain.py @@ -940,7 +940,7 @@ class cmd_domain_demote(Command): else: raise CommandError("Error while sending a removeDsServer of %s: " % server_dsa_dn, e) - remove_dc.remove_sysvol_references(remote_samdb, dc_name) + remove_dc.remove_sysvol_references(remote_samdb, logger, dc_name) # These are objects under the computer account that should be deleted for s in ("CN=Enterprise,CN=NTFRS Subscriptions", -- 1.7.10.4