diff --git a/flask_security/core.py b/flask_security/core.py index 7008079..f741ac1 100644 --- a/flask_security/core.py +++ b/flask_security/core.py @@ -204,8 +204,7 @@ class Security(object): def __init__(self, app=None, datastore=None, **kwargs): self.init_app(app, datastore, **kwargs) - def init_app(self, app, datastore, - registerable=True, recoverable=True, template_folder=None): + def init_app(self, app, datastore, registerable=True, recoverable=True): """Initializes the Flask-Security extension for the specified application and datastore implentation.