From 4c9eb5e7d8f3d257990f44b9590a90e49dbb8c65 Mon Sep 17 00:00:00 2001 From: Alfie Day Date: Mon, 25 Jan 2016 19:19:35 +0000 Subject: [PATCH] Fix inbalanced quotes This bugged me. I had to fix it. --- docs/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.rst b/docs/index.rst index 5ae25dc..4ae68fe 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -17,7 +17,7 @@ Usage:: from docxtpl import DocxTemplate doc = DocxTemplate("my_word_template.docx") - context = { 'company_name' : 'World company" } + context = { 'company_name' : "World company" } doc.render(context) doc.save("generated_doc.docx")