From: Andres Gomez Date: Fri, 5 May 2017 13:09:42 +0000 (+0300) Subject: bin/*py: honor editorconfig formatting X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bac80635af061ee4b6cb681c6ccf75cd174408d6;p=mesa.git bin/*py: honor editorconfig formatting Replace the two stray tabs with respective space. Signed-off-by: Andres Gomez Reviewed-by: Emil Velikov --- diff --git a/bin/perf-annotate-jit.py b/bin/perf-annotate-jit.py index 746434008fd..4f05585bd43 100755 --- a/bin/perf-annotate-jit.py +++ b/bin/perf-annotate-jit.py @@ -133,7 +133,7 @@ class PerfParser(LineParser): 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 @@ -155,7 +155,7 @@ class PerfParser(LineParser): 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)