diff --git a/python/samba/tests/dns.py b/python/samba/tests/dns.py index f93e13f36df..303e93a0283 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])