summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2014-06-02 01:34:47 +0200
committerAndrew Bartlett <abartlet@samba.org>2014-10-14 06:44:06 +0200
commit2553714004cb1d6b5889fa81cd6b0ef9c1be9608 (patch)
treed87c8d38ed68f9a0c13056202f509f9cf66783d3 /python
parentbbaa739bbda4685fa5e38ea0d939496398e11ebf (diff)
downloadsamba-2553714004cb1d6b5889fa81cd6b0ef9c1be9608.tar.gz
Remove last instance of pep8 error E701 (more statements on one line).
Signed-Off-By: Jelmer Vernooij <jelmer@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Change-Id: I419f0536b43d98ce6bb52c5907413a02ea1a6937
Diffstat (limited to 'python')
-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 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])