aboutsummaryrefslogtreecommitdiffstats
path: root/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'utils.py')
-rw-r--r--utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils.py b/utils.py
index 2eb760d..abd2827 100644
--- a/utils.py
+++ b/utils.py
@@ -25,7 +25,7 @@ def hexdump(data, indent = 0, short = False):
pos = 0
while len(head) > 0:
if pos > 0:
- result = result + "\n%s" % ' ' * indent
+ result = result + "\n%s" % (' ' * indent)
result = result + "%04x: %-48s %-16s" % (pos, hexable(head), printable(head))
pos = pos + len(head)
(head, tail) = (tail[:16], tail[16:])