16 lines
261 B
Python
16 lines
261 B
Python
import logging
|
|
import pprint
|
|
|
|
from pelican import signals
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
def generator_finalized(context):
|
|
for article in context['articles']:
|
|
pass
|
|
|
|
|
|
def register():
|
|
signals.generator_finalized.connect(generator_finalized)
|
|
|