diff options
author | Olof Johansson <olof.johansson@axis.com> | 2018-07-16 17:05:53 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-07-18 10:13:30 +0100 |
commit | 8538aabf62d866f36764b4b136ee8575308df690 (patch) | |
tree | 9a852b29defb052608e6dc3ca6fa852bb93df4c2 /meta/classes/spdx.bbclass | |
parent | c0dac0d600e81054104f7b377f7c266aa83df371 (diff) | |
download | openembedded-core-contrib-8538aabf62d866f36764b4b136ee8575308df690.tar.gz |
spdx.bbclass: Replace deprecated string.replace with str.replace
The string.replace function is removed in python3. Instead, the str
method "replace" should be used instead.
Signed-off-by: Olof Johansson <olofjn@axis.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/classes/spdx.bbclass')
-rw-r--r-- | meta/classes/spdx.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/spdx.bbclass b/meta/classes/spdx.bbclass index c5f544d2a4f..ab2eaa5c0c1 100644 --- a/meta/classes/spdx.bbclass +++ b/meta/classes/spdx.bbclass @@ -226,7 +226,7 @@ def run_fossology(foss_command, full_spdx): except subprocess.CalledProcessError as e: return None - foss_output = string.replace(foss_output, '\r', '') + foss_output = foss_output.replace('\r', '') # Package info package_info = {} |