forked from github/pelican
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)
|