Bugfix OAuth Login

This commit is contained in:
Ozzie Isaacs 2022-04-28 21:43:26 +02:00
parent ef4b5e2881
commit 258b4a6767
1 changed files with 6 additions and 7 deletions

View File

@ -22,13 +22,6 @@ from . import create_app
from .jinjia import jinjia
from .remotelogin import remotelogin
try:
from oauth_bb import oauth
oauth_available = True
except ImportError:
oauth_available = False
def main():
app = create_app()
@ -50,6 +43,12 @@ def main():
except (ImportError, AttributeError): # Catch also error for not installed flask-WTF (missing csrf decorator)
kobo_available = False
try:
from .oauth_bb import oauth
oauth_available = True
except ImportError:
oauth_available = False
from . import web_server
init_errorhandler()