Remove bracket char, doesnt work well in all fonts

This commit is contained in:
Neale Pickett 2018-07-10 23:05:59 +00:00
parent 8994b9b5ca
commit d0b33d6ec5
1 changed files with 2 additions and 2 deletions

View File

@ -97,9 +97,9 @@ class HexDumper:
self.output.write(' '.join(self.hexes[:8]))
self.output.write(' ')
self.output.write(' '.join(self.hexes[8:]))
self.output.write(' ')
self.output.write(' ')
self.output.write(''.join(self.chars))
self.output.write('\n')
self.output.write('\n')
self.hexes = []
self.chars = []