소스 검색

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".
Jed Brown 11 년 전
부모
커밋
0f55bd63f2
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      latex/latex.py

+ 2 - 2
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)