From 2d0c49f4b4703e61b19ea58a8f7cbdf961cc82ab Mon Sep 17 00:00:00 2001 From: Matt Wright Date: Thu, 24 May 2012 21:44:50 -0400 Subject: [PATCH] More cleanup --- flask_security/core.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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.