summaryrefslogtreecommitdiff
path: root/python/samba/remove_dc.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/samba/remove_dc.py')
-rw-r--r--python/samba/remove_dc.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/samba/remove_dc.py b/python/samba/remove_dc.py
index 4c8ee892464..84360ed1503 100644
--- a/python/samba/remove_dc.py
+++ b/python/samba/remove_dc.py
@@ -221,7 +221,7 @@ def offline_remove_server(samdb, logger,
computer_dn = None
try:
- dnsHostName = msgs[0]["dnsHostName"][0]
+ dnsHostName = str(msgs[0]["dnsHostName"][0])
except KeyError:
dnsHostName = None
@@ -251,7 +251,7 @@ def offline_remove_server(samdb, logger,
samdb.delete(computer_dn, ["tree_delete:0"])
if "dnsHostName" in msgs[0]:
- dnsHostName = msgs[0]["dnsHostName"][0]
+ dnsHostName = str(msgs[0]["dnsHostName"][0])
if remove_dns_account:
res = samdb.search(expression="(&(objectclass=user)(cn=dns-%s)(servicePrincipalName=DNS/%s))" %