Fixes old print statement in some documentation pages

This commit is contained in:
karintou8710 2021-10-16 02:04:07 +09:00
parent c5ed6c5e77
commit 21def4e05c
2 changed files with 4 additions and 4 deletions

View file

@ -177,7 +177,7 @@ With Blinker 1.1 you can also easily subscribe to signals by using the new
@template_rendered.connect_via(app)
def when_template_rendered(sender, template, context, **extra):
print f'Template {template.name} is rendered with {context}'
print(f'Template {template.name} is rendered with {context}')
Core Signals
------------