From d2a0f8330f6fe6bd69f787344757e9e7724528fa Mon Sep 17 00:00:00 2001 From: Jeffrey Gelens Date: Thu, 18 Jul 2013 09:45:33 +0200 Subject: [PATCH] self.app in __init__ is not needed anymore --- flask_sslify.py | 1 - 1 file changed, 1 deletion(-) diff --git a/flask_sslify.py b/flask_sslify.py index 8559bc4..6ab2e8b 100644 --- a/flask_sslify.py +++ b/flask_sslify.py @@ -10,7 +10,6 @@ class SSLify(object): def __init__(self, app=None, age=YEAR_IN_SECS, subdomains=False, permanent=False): if app is not None: - self.app = app self.hsts_age = age self.hsts_include_subdomains = subdomains self.permanent = permanent