From 0f55bd63f243b292b9073773cec5150b51b8df7a Mon Sep 17 00:00:00 2001 From: Jed Brown Date: Fri, 11 Oct 2013 22:22:49 -0500 Subject: [PATCH] latex: fix signal names to standardized (pelican-3.2 and later) The names were accidentally reverted to pre-pelican-3.2 in 5fa7ddc0ea08d517c4a767ceaa1df6ccc4d721c "revised the latex plugin so that it will work in both http and https protocols". --- latex/latex.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/latex/latex.py b/latex/latex.py index 902dd51..1d4c579 100644 --- a/latex/latex.py +++ b/latex/latex.py @@ -51,5 +51,5 @@ def register(): """ Plugin registration """ - signals.article_generate_context.connect(addLatex) - signals.pages_generate_context.connect(addLatex) + signals.article_generator_context.connect(addLatex) + signals.page_generator_context.connect(addLatex)