From 01f8bdd8d38c3fe18d6ed259e767b32e0e8ab6a7 Mon Sep 17 00:00:00 2001 From: Marcel Kapfer Date: Mon, 6 Jul 2020 20:01:18 +0200 Subject: [PATCH] Recipe name for source url text Closes #3 --- recipe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe.py b/recipe.py index 2051f23..9f48dc9 100644 --- a/recipe.py +++ b/recipe.py @@ -114,7 +114,7 @@ class Recipe(): code.append(writer.table_cell(self.servings, f"{style_info_contentrow} {style_info_content}")) code.append(writer.table_cell(self.time, style_info_content)) code.append(writer.table_cell("🟢" * self.rating + "⚪" * (5 - self.rating), style_info_content)) - code.append(writer.table_cell(writer.link("Quelle", self.url), style_info_content)) + code.append(writer.table_cell(writer.link(self.name, self.url), style_info_content)) code.append(writer.table_row_end()) code.append(writer.newline()) code.append(writer.linebreak())