summaryrefslogtreecommitdiff
path: root/pysnmp/debug.py
diff options
context:
space:
mode:
authorIlya Etingof <etingof@gmail.com>2016-04-05 23:06:55 +0200
committerIlya Etingof <etingof@gmail.com>2016-04-05 23:06:55 +0200
commitaa91642cc3e8723439c9e55f16c20735b0d1668d (patch)
tree3be630baf5b51d99f88c506fac44c85972e86beb /pysnmp/debug.py
parent7de993c90e76faa76aad2f3ad4d62788a87c20ba (diff)
downloadpysnmp-git-aa91642cc3e8723439c9e55f16c20735b0d1668d.tar.gz
pep8 reformatted
Diffstat (limited to 'pysnmp/debug.py')
-rw-r--r--pysnmp/debug.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pysnmp/debug.py b/pysnmp/debug.py
index 75b7df46..80d7d6ec 100644
--- a/pysnmp/debug.py
+++ b/pysnmp/debug.py
@@ -122,4 +122,5 @@ def setLogger(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))])