From d1ee35dc3623ef6e2a7a7c38e1653b85f50e6ba3 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Fri, 5 Jul 2013 12:07:49 +0200 Subject: dns.py: Use the python socket module. We preload socket_wrapper, no need to use the special module. Signed-off-by: Andreas Schneider Reviewed-by: Stefan Metzmacher --- python/samba/tests/dns.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python') diff --git a/python/samba/tests/dns.py b/python/samba/tests/dns.py index f2c5685b3f..9c0b27471a 100644 --- a/python/samba/tests/dns.py +++ b/python/samba/tests/dns.py @@ -18,7 +18,7 @@ import os import struct import random -from samba import socket +import socket import samba.ndr as ndr import samba.dcerpc.dns as dns from samba.tests import TestCase -- cgit