diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2014-06-02 01:34:47 +0200 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2014-10-14 06:44:06 +0200 |
commit | 2553714004cb1d6b5889fa81cd6b0ef9c1be9608 (patch) | |
tree | d87c8d38ed68f9a0c13056202f509f9cf66783d3 /python | |
parent | bbaa739bbda4685fa5e38ea0d939496398e11ebf (diff) | |
download | samba-2553714004cb1d6b5889fa81cd6b0ef9c1be9608.tar.gz samba-2553714004cb1d6b5889fa81cd6b0ef9c1be9608.tar.xz samba-2553714004cb1d6b5889fa81cd6b0ef9c1be9608.zip |
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.py | 3 |
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]) |