diff --git a/djangoshaker/views.py b/djangoshaker/views.py --- a/djangoshaker/views.py +++ b/djangoshaker/views.py @@ -58,7 +58,6 @@ class UserView(TemplateView): for recipe in Recipe.objects.all(): recipe_ingredients = set([recing.ingredient_id for recing in recipe.recipeingredient_set.all()]) if recipe_ingredients.issubset(user_ingredients): - print recipe.name available_recipes.append(recipe) context['available_recipes'] = available_recipes else: