1
0
Fork 0
forked from github/pelican
pelican-theme/pelican/plugins/initialized.py

8 lines
151 B
Python
Raw Normal View History

2011-04-26 12:26:56 +02:00
from blinker import signal
def test(sender):
print "%s initialized !!" % sender
def register():
signal('pelican_initialized').connect(test)