summaryrefslogtreecommitdiff
path: root/pysnmp/debug.py
diff options
context:
space:
mode:
authorelie <elie>2015-10-17 20:22:30 +0000
committerelie <elie>2015-10-17 20:22:30 +0000
commita46f37c26520015e3ad8628587db3899f55d8c33 (patch)
tree6798d1e7f1a5bac03b595d4e6b27b8735bb9c1eb /pysnmp/debug.py
parent9e73d5b89c6121437b92f02482b4423ab526b51a (diff)
downloadpysnmp-git-a46f37c26520015e3ad8628587db3899f55d8c33.tar.gz
linted for bad-whitespace and some other issues
Diffstat (limited to 'pysnmp/debug.py')
-rw-r--r--pysnmp/debug.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/pysnmp/debug.py b/pysnmp/debug.py
index bec85400..da5101d0 100644
--- a/pysnmp/debug.py
+++ b/pysnmp/debug.py
@@ -109,5 +109,4 @@ def setLogger(l):
logger = l
def hexdump(octets):
- return ' '.join(['%s%.2X' % (n%16 == 0 and ('\n%.5d: ' % n) or '', x)
- for n, x in zip(range(len(octets)), octs2ints(octets))])
+ return ' '.join(['%s%.2X' % (n%16 == 0 and ('\n%.5d: ' % n) or '', x) for n, x in zip(range(len(octets)), octs2ints(octets))])