Closed jpvanhal closed 12 years ago
When using app factories, SeaSurf.init_app has not yet been called when the exempt or include decorator is applied to a view and an AttributeError is raised. Initializing _exempt_views and _include_views in SeaSurf.__init__ fixes the issue.
SeaSurf.init_app
exempt
include
AttributeError
_exempt_views
_include_views
SeaSurf.__init__
Thanks! :)
When using app factories,
SeaSurf.init_app
has not yet been called when theexempt
orinclude
decorator is applied to a view and anAttributeError
is raised. Initializing_exempt_views
and_include_views
inSeaSurf.__init__
fixes the issue.