From 9ff05c4a11035d3dc2830a4f52a5d6d441430b75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20V=C3=A9zina?= <5130500+morpheus65535@users.noreply.github.com> Date: Mon, 30 Dec 2019 08:16:12 -0500 Subject: [PATCH] Fixed typo. --- bazarr/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bazarr/main.py b/bazarr/main.py index 6e07dbe0e..ba4cb7afc 100644 --- a/bazarr/main.py +++ b/bazarr/main.py @@ -138,7 +138,7 @@ def login_required(f): }) return f(*args, **kwargs) - elif _settings.auth.type == 'form': + elif settings.auth.type == 'form': if 'logged_in' in session: return f(*args, **kwargs) else: