We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22d82e7 commit d575de5Copy full SHA for d575de5
docs/blueprints.rst
@@ -127,8 +127,8 @@ It is possible to register a blueprint on another blueprint.
127
128
.. code-block:: python
129
130
- parent = Blueprint("parent", __name__, url_prefix="/parent")
131
- child = Blueprint("child", __name__, url_prefix="/child)
+ parent = Blueprint('parent', __name__, url_prefix='/parent')
+ child = Blueprint('child', __name__, url_prefix='/child')
132
parent.register_blueprint(child)
133
app.register_blueprint(parent)
134
0 commit comments