Skip to content

Commit

Permalink
[fix] web server - Updated import to match flask-login changes, updat…
Browse files Browse the repository at this point in the history
…ed requirement. Closed #1467
  • Loading branch information
liiight committed Oct 27, 2016
1 parent 354e867 commit 546acf7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion flexget/api/core/authentication.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
import base64

from flask import request, session as flask_session
from flask_login import login_user, LoginManager, current_user, current_app
from flask_login import LoginManager
from flask_login.utils import current_app, login_user, current_user
from flask_restplus import inputs
from werkzeug.security import check_password_hash

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ flask>=0.7
flask-restful>=0.3.3
flask-restplus==0.8.6
flask-compress>=1.2.1
flask-login>=0.3.2, <0.4.0
flask-login>=0.4.0
flask-cors>=2.1.2
pyparsing>=2.0.3
Safe>=0.4
Expand Down

0 comments on commit 546acf7

Please sign in to comment.