diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-05 08:18:41 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-05 08:19:02 +0100 |
commit | 04319c0340010c4e0f78cab252cfcb0ebe23ee84 (patch) | |
tree | 27cdfb20fd781d510818db8aadf0412550063d0b /meta/classes | |
parent | 928e1335d4206bdd5f25a7d58a0f8398a65467b6 (diff) | |
download | poky-04319c0340010c4e0f78cab252cfcb0ebe23ee84.tar.gz |
image-buildinfo: Update to python3 syntax
(From OE-Core rev: 6e7d9dd9b5cbf46b955036876a25353fafbf264c)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/image-buildinfo.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/image-buildinfo.bbclass b/meta/classes/image-buildinfo.bbclass index 197b24235b..83d0db37d8 100644 --- a/meta/classes/image-buildinfo.bbclass +++ b/meta/classes/image-buildinfo.bbclass | |||
@@ -32,7 +32,7 @@ def get_layer_git_status(path): | |||
32 | shell=True, | 32 | shell=True, |
33 | stderr=subprocess.STDOUT) | 33 | stderr=subprocess.STDOUT) |
34 | return "" | 34 | return "" |
35 | except subprocess.CalledProcessError, ex: | 35 | except subprocess.CalledProcessError as ex: |
36 | # Silently treat errors as "modified", without checking for the | 36 | # Silently treat errors as "modified", without checking for the |
37 | # (expected) return code 1 in a modified git repo. For example, we get | 37 | # (expected) return code 1 in a modified git repo. For example, we get |
38 | # output and a 129 return code when a layer isn't a git repo at all. | 38 | # output and a 129 return code when a layer isn't a git repo at all. |