Convert FEED settings from %s to {slug} redux

Closes #2106, Closes #2383.
This commit is contained in:
MinchinWeb 2018-11-02 21:28:36 -06:00
commit cceb04d394
10 changed files with 165 additions and 102 deletions

View file

@ -60,7 +60,7 @@ which you map the signals to your plugin logic. Let's take a simple example::
from pelican import signals
def test(sender):
print "%s initialized !!" % sender
print("{} initialized !!".format(sender))
def register():
signals.initialized.connect(test)