summaryrefslogtreecommitdiffstats
path: root/python/samba/tests/dns.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/samba/tests/dns.py')
-rw-r--r--python/samba/tests/dns.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/python/samba/tests/dns.py b/python/samba/tests/dns.py
index f93e13f36d..303e93a028 100644
--- a/python/samba/tests/dns.py
+++ b/python/samba/tests/dns.py
@@ -124,7 +124,8 @@ class DNSTest(TestCase):
s.close()
def hexdump(self, src, length=8):
- N=0; result=''
+ N = 0
+ result = ''
while src:
s,src = src[:length],src[length:]
hexa = ' '.join(["%02X"%ord(x) for x in s])