OSDN Git Service

bin/*py: honor editorconfig formatting
authorAndres Gomez <agomez@igalia.com>
Fri, 5 May 2017 13:09:42 +0000 (16:09 +0300)
committerAndres Gomez <agomez@igalia.com>
Tue, 9 May 2017 11:06:52 +0000 (14:06 +0300)
Replace the two stray tabs with respective space.

Signed-off-by: Andres Gomez <agomez@igalia.com>
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
bin/perf-annotate-jit.py

index 7464340..4f05585 100755 (executable)
@@ -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)