Replace the two stray tabs with respective space.
Signed-off-by: Andres Gomez <agomez@igalia.com>
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
def __init__(self, infile, symbol):
LineParser.__init__(self, infile)
- self.symbol = symbol
+ self.symbol = symbol
def readline(self):
# Override LineParser.readline to ignore comment lines
addresses.sort()
total_samples = 0
- sys.stdout.write('%s:\n' % self.symbol)
+ sys.stdout.write('%s:\n' % self.symbol)
for address, instr in asm:
try:
sample = samples.pop(address)