summaryrefslogtreecommitdiffstats
path: root/meta/lib/oe/qa.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-07 13:55:53 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-09 14:06:51 +0100
commitc3d18afaa54fe81aef80e45ec3564f7318dd4966 (patch)
tree84bb27fa41c7a29e2e3a6351792e4fd6df4fcd66 /meta/lib/oe/qa.py
parentdb8217f6b89be11a17e9f3cba7d98be64d8aded1 (diff)
downloadpoky-c3d18afaa54fe81aef80e45ec3564f7318dd4966.tar.gz
classes/recipes/lib: Fix various python whitespace issues
There are some left over tab characters in the python functions. This removes them and resolves python 3 errors. (From OE-Core rev: fafeb381c48291fa65c634c01c244843c8d7fad3) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oe/qa.py')
-rw-r--r--meta/lib/oe/qa.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/qa.py b/meta/lib/oe/qa.py
index 4777ddc06a..c4376f0161 100644
--- a/meta/lib/oe/qa.py
+++ b/meta/lib/oe/qa.py
@@ -72,7 +72,7 @@ class ELFFile:
72 return ord(self.data[ELFFile.EI_ABIVERSION]) 72 return ord(self.data[ELFFile.EI_ABIVERSION])
73 73
74 def abiSize(self): 74 def abiSize(self):
75 return self.bits 75 return self.bits
76 76
77 def isLittleEndian(self): 77 def isLittleEndian(self):
78 return self.sex == "<" 78 return self.sex == "<"