aboutsummaryrefslogtreecommitdiffstats
path: root/utils.py
diff options
context:
space:
mode:
authorhenryk <henryk@f711b948-2313-0410-aaa9-d29f33439f0b>2005-09-28 20:19:27 +0000
committerhenryk <henryk@f711b948-2313-0410-aaa9-d29f33439f0b>2005-09-28 20:19:27 +0000
commit122f2b90204efad8a158d9d9c07e7b5876f9b21f (patch)
treef68f20cc4dff7aabc12c8518e187f95ef4a55e5d /utils.py
parentebeb989e388966502a72836c1f183a6c1e520b29 (diff)
Fix line breaks
git-svn-id: svn+ssh://localhost/home/henryk/svn/cyberflex-shell/trunk@10 f711b948-2313-0410-aaa9-d29f33439f0b
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:])