From 80773164aa3e1fbff756037ae6bfc3670abc311b Mon Sep 17 00:00:00 2001 From: Marcel Kapfer Date: Mon, 6 Jul 2020 19:54:57 +0200 Subject: [PATCH] Display list as unordered list Closes #1 --- recipe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe.py b/recipe.py index a000f2e..2051f23 100644 --- a/recipe.py +++ b/recipe.py @@ -176,7 +176,7 @@ class Recipe(): code.append(writer.table_row_end()) for item in items: - code.append(writer.olitem(item)) + code.append(writer.ulitem(item)) code.append(writer.newline()) return code