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

7 lines
141 B
Python
Raw Normal View History

2011-06-18 01:03:53 +02:00
from pelican import signals
2011-04-26 12:26:56 +02:00
def test(sender):
print "%s initialized !!" % sender
def register():
2011-06-18 01:03:53 +02:00
signals.initialized.connect(test)