Remove last instance of pep8 error E701 (more statements on one line).
authorJelmer Vernooij <jelmer@samba.org>
Sun, 1 Jun 2014 23:34:47 +0000 (01:34 +0200)
committerAndrew Bartlett <abartlet@samba.org>
Tue, 14 Oct 2014 04:44:06 +0000 (06:44 +0200)
Signed-Off-By: Jelmer Vernooij <jelmer@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Change-Id: I419f0536b43d98ce6bb52c5907413a02ea1a6937

python/samba/tests/dns.py

index f93e13f36df41477ce6b38ccac2293a40cfc31a9..303e93a02830d9ca18b9c586042f8b3f630d3970 100644 (file)
@@ -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])