summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorAndres Gomez <agomez@igalia.com>2017-05-05 16:09:42 +0300
committerAndres Gomez <agomez@igalia.com>2017-05-09 14:06:52 +0300
commitbac80635af061ee4b6cb681c6ccf75cd174408d6 (patch)
tree862e23952c4d5048ac8d2c21231926ffa20664f0 /bin
parentd823440fed0a8d5b20b2b2d42946b24675326bb6 (diff)
bin/*py: honor editorconfig formatting
Replace the two stray tabs with respective space. Signed-off-by: Andres Gomez <agomez@igalia.com> Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/perf-annotate-jit.py4
1 files changed, 2 insertions, 2 deletions
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)