summaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2013-07-05 12:07:49 +0200
committerStefan Metzmacher <metze@samba.org>2014-04-17 14:56:07 +0200
commitd1ee35dc3623ef6e2a7a7c38e1653b85f50e6ba3 (patch)
treee79f8c035d49fd80b7025a86c0f8a9f0e7c59b8e /python
parent0ed826d5087f05993f74cfa280bf1abed14ab161 (diff)
downloadsamba-d1ee35dc3623ef6e2a7a7c38e1653b85f50e6ba3.tar.gz
samba-d1ee35dc3623ef6e2a7a7c38e1653b85f50e6ba3.tar.xz
samba-d1ee35dc3623ef6e2a7a7c38e1653b85f50e6ba3.zip
dns.py: Use the python socket module.
We preload socket_wrapper, no need to use the special module. Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'python')
-rw-r--r--python/samba/tests/dns.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/samba/tests/dns.py b/python/samba/tests/dns.py
index f2c5685b3f0..9c0b27471a7 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