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

9 lines
222 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
from __future__ import unicode_literals, print_function
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)
2011-04-26 12:26:56 +02:00
def register():
2011-06-18 01:03:53 +02:00
signals.initialized.connect(test)