Remove the deprecated Flask.modules property

This commit is contained in:
ThiefMaster 2015-06-20 18:09:27 +02:00
parent 87222087b3
commit 6af9690ae9

View file

@ -1963,13 +1963,6 @@ class Flask(_PackageBoundObject):
error = None
ctx.auto_pop(error)
@property
def modules(self):
from warnings import warn
warn(DeprecationWarning('Flask.modules is deprecated, use '
'Flask.blueprints instead'), stacklevel=2)
return self.blueprints
def __call__(self, environ, start_response):
"""Shortcut for :attr:`wsgi_app`."""
return self.wsgi_app(environ, start_response)