diff --git a/core/misc.py b/core/misc.py index 0975e94..812f044 100644 --- a/core/misc.py +++ b/core/misc.py @@ -119,7 +119,7 @@ def hexdump(data, indent=0, offset=16, show_header=True, show_offsets=True, show line.append('%2x' %(i)) if show_ascii: - line.append(' ASCII') + line.append(' *{0}*'.format("ASCII".center(offset, "-"))) output_io.write(' '.join(line) + '\n')