diff --git a/flask/blueprints.py b/flask/blueprints.py index 8311e580..3bdb3d9e 100644 --- a/flask/blueprints.py +++ b/flask/blueprints.py @@ -65,7 +65,7 @@ class BlueprintSetupState(object): to the application. The endpoint is automatically prefixed with the blueprint's name. """ - if self.url_prefix: + if self.url_prefix is not None: rule = '/'.join((self.url_prefix, rule.lstrip('/'))) options.setdefault('subdomain', self.subdomain) if endpoint is None: