summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/orm/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/orm/models.py')
-rw-r--r--bitbake/lib/toaster/orm/models.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/orm/models.py b/bitbake/lib/toaster/orm/models.py
index b24e9c5492..fd15fbe7be 100644
--- a/bitbake/lib/toaster/orm/models.py
+++ b/bitbake/lib/toaster/orm/models.py
@@ -1636,7 +1636,8 @@ class CustomImageRecipe(Recipe):
1636 if base_recipe_path: 1636 if base_recipe_path:
1637 base_recipe = open(base_recipe_path, 'r').read() 1637 base_recipe = open(base_recipe_path, 'r').read()
1638 else: 1638 else:
1639 raise IOError("Based on recipe file not found") 1639 raise IOError("Based on recipe file not found: %s" %
1640 base_recipe_path)
1640 1641
1641 # Add a special case for when the recipe we have based a custom image 1642 # Add a special case for when the recipe we have based a custom image
1642 # recipe on requires another recipe. 1643 # recipe on requires another recipe.