1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-01 00:59:48 +00:00

classes/oeqa: Update for print statements and file() -> open() for python3

Found some more syntax cleanups needed for python3.

(From OE-Core rev: 1181d86e8707c5b8e8d43d5e785d7d9cf01fa491)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie
2016-05-16 08:29:52 +01:00
parent ca2edae7c3
commit 9094ea9fdd
7 changed files with 21 additions and 21 deletions
+1 -1
View File
@@ -45,7 +45,7 @@ python do_lint() {
def findKey(path, key):
ret = True
f = file('%s' % path, mode = 'r')
f = open('%s' % path, mode = 'r')
line = f.readline()
while line:
if line.find(key) != -1: