diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-21 12:26:45 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-21 22:26:33 +0100 |
commit | 88972114a6f539b76e37e055735aaa8eb62d0609 (patch) | |
tree | 3196dd2600fa169f80e054321fcd21746ce6feb2 /meta/classes | |
parent | ffe9604be2556b8b5c3f98bcc5283b00bf0c0dab (diff) | |
download | poky-88972114a6f539b76e37e055735aaa8eb62d0609.tar.gz |
meta/scripts: python3: rename file -> open
file() API doesn't exist in python 3, convert to open(). Also handle
some cases where files aren't closed. Compatible with python 2.7.
[Contributions from Ed and Richard]
(From OE-Core rev: 0f4ec13e11bb8abe21aba2a28547dfb9372bc377)
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/insane.bbclass | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index 0b151c214d..116abc428b 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass | |||
@@ -177,9 +177,8 @@ def package_qa_write_error(type, error, d): | |||
177 | logfile = d.getVar('QA_LOGFILE', True) | 177 | logfile = d.getVar('QA_LOGFILE', True) |
178 | if logfile: | 178 | if logfile: |
179 | p = d.getVar('P', True) | 179 | p = d.getVar('P', True) |
180 | f = file( logfile, "a+") | 180 | with open(logfile, "a+") as f: |
181 | print >> f, "%s: %s [%s]" % (p, error, type) | 181 | f.write("%s: %s [%s]" % (p, error, type)) |
182 | f.close() | ||
183 | 182 | ||
184 | def package_qa_handle_error(error_class, error_msg, d): | 183 | def package_qa_handle_error(error_class, error_msg, d): |
185 | package_qa_write_error(error_class, error_msg, d) | 184 | package_qa_write_error(error_class, error_msg, d) |