From 2553714004cb1d6b5889fa81cd6b0ef9c1be9608 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 2 Jun 2014 01:34:47 +0200 Subject: Remove last instance of pep8 error E701 (more statements on one line). Signed-Off-By: Jelmer Vernooij Reviewed-by: Andrew Bartlett Change-Id: I419f0536b43d98ce6bb52c5907413a02ea1a6937 --- python/samba/tests/dns.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'python') 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]) -- cgit