summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/orm/models.py
diff options
context:
space:
mode:
authorMarlon Rodriguez Garcia <marlon.rodriguez-garcia@savoirfairelinux.com>2023-10-03 13:26:23 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-10-06 11:42:46 +0100
commit3ac4694fc3b85cf23909d7e2fcc4ae97004ae927 (patch)
tree02f3976723a9f4060127f2f679ff0349bd9e2eef /bitbake/lib/toaster/orm/models.py
parent08421d8985d968b46cfc03baf610c6d7a71f2eed (diff)
downloadpoky-3ac4694fc3b85cf23909d7e2fcc4ae97004ae927.tar.gz
bitbake: toaster: update selenium version and code syntax
Updated selenium version to latest 4.13.0, changed selenum specific version syntax elements to accomplish test success (Bitbake rev: 868c88a249ef4b9fe5a891e76e25e054e4fcd994) Signed-off-by: Marlon Rodriguez Garcia <marlon.rodriguez-garcia@savoirfairelinux.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/orm/models.py')
-rw-r--r--bitbake/lib/toaster/orm/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/orm/models.py b/bitbake/lib/toaster/orm/models.py
index f9fcf9e4fb..0d503a5142 100644
--- a/bitbake/lib/toaster/orm/models.py
+++ b/bitbake/lib/toaster/orm/models.py
@@ -1733,7 +1733,7 @@ class CustomImageRecipe(Recipe):
1733 packages_conf += "\"" 1733 packages_conf += "\""
1734 1734
1735 base_recipe_path = self.get_base_recipe_file() 1735 base_recipe_path = self.get_base_recipe_file()
1736 if base_recipe_path: 1736 if base_recipe_path and os.path.isfile(base_recipe_path):
1737 base_recipe = open(base_recipe_path, 'r').read() 1737 base_recipe = open(base_recipe_path, 'r').read()
1738 else: 1738 else:
1739 # Pass back None to trigger error message to user 1739 # Pass back None to trigger error message to user