mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
7 lines
131 B
Python
7 lines
131 B
Python
from blinker import signal
|
|
|
|
|
|
def test(sender):
|
|
print "%s initialized !!" % sender
|
|
|
|
signal('pelican_initialized').connect(test)
|