Fix blog blueprint name

This commit is contained in:
Felipe Martín 2015-12-06 21:13:05 +01:00
parent e9f2304008
commit 311f79a155
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
from flask import Blueprint, render_template, request
blog = Blueprint('simple_page', __name__,)
blog = Blueprint('blog', __name__,)
@blog.route('/blog/<int:year>/<int:month>/<int:day>/<slug>/')