From dfdcac22927f8027f393e66d78345106cdbbfae5 Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Fri, 14 Jun 2013 10:54:16 +0100 Subject: [PATCH] Fixed some embarrassing grammar --- flask/blueprints.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flask/blueprints.py b/flask/blueprints.py index 4575ec9b..d45fd062 100644 --- a/flask/blueprints.py +++ b/flask/blueprints.py @@ -167,7 +167,7 @@ class Blueprint(_PackageBoundObject): the :func:`url_for` function is prefixed with the name of the blueprint. """ if endpoint: - assert '.' not in endpoint, "Blueprint endpoint's should not contain dot's" + assert '.' not in endpoint, "Blueprint endpoints should not contain dots" self.record(lambda s: s.add_url_rule(rule, endpoint, view_func, **options))