use module name as name for journal Blueprint

This commit is contained in:
Brian S. Stephan 2020-03-07 09:42:07 -06:00
parent 308eaffe55
commit 1d446436ad
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
"""Journal functionality."""
from flask import Blueprint
bp = Blueprint('journal_views', __name__, url_prefix='/')
bp = Blueprint('journal', __name__, url_prefix='/')
@bp.route('/', defaults={'path': 'index'})