Mercurial > lcfOS
diff python/ppci/recipe.py @ 353:b8ad45b3a573
Started with strings
author | Windel Bouwman |
---|---|
date | Sun, 09 Mar 2014 18:49:10 +0100 |
parents | 86b02c98a717 |
children | c2ddc8a36f5e |
line wrap: on
line diff
--- a/python/ppci/recipe.py Sun Mar 09 11:55:55 2014 +0100 +++ b/python/ppci/recipe.py Sun Mar 09 18:49:10 2014 +0100 @@ -9,6 +9,7 @@ targets = {t.name: t for t in target_list} targetnames = list(targets.keys()) + class RecipeLoader: """ Loads a recipe into a runner from a dictionary or file """ def __init__(self): @@ -67,5 +68,3 @@ for command, value in recipe.items(): return self.directive_handlers[command](value) - -