1
0
Fork 0
forked from github/pelican
pelican-theme/pelican/plugins/initialized.py
Dirk Makowski 71995d5e1b Port pelican to python 3.
Stays compatible with 2.x series, thanks to an unified codebase.
2013-01-11 03:20:09 +01:00

9 lines
222 B
Python

# -*- coding: utf-8 -*-
from __future__ import unicode_literals, print_function
from pelican import signals
def test(sender):
print("%s initialized !!" % sender)
def register():
signals.initialized.connect(test)