Skip to content

Commit 85b7512

Browse files
authoredMay 21, 2020
Upgrade Flask-Testing (#18)
* Upgrade Werkzeug. Upgrade Flask-Testing to use latest prod version instead of GitHub repo * Fix malformed format string
1 parent 2f1586b commit 85b7512

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed
 

‎lti.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ def index(lti=lti):
173173
app.logger.info(
174174
(
175175
"WWW-Authenticate found in headers, or status code was 401. "
176-
"Re-rolling oauth.\n {0} \n {1} \n {1}"
176+
"Re-rolling oauth.\n {0} \n {1} \n {2}"
177177
).format(r.status_code, r.headers, r.url)
178178
)
179179

‎requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ Flask-SQLAlchemy==2.4.1
44
mysqlclient
55
-e git+https://github.com/ucfcdl/pylti.git@roles#egg=PyLTI
66
requests==2.22.0
7-
Werkzeug>=1.0.0 # Chrome 80 SameSite fix
7+
Werkzeug>=1.0.1 # Chrome 80 SameSite fix

‎test_requirements.txt

+1-4
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,7 @@ black
44
blinker
55
coverage
66
flake8
7-
# Flask-Testing
7+
Flask-Testing>=0.8.0
88
mock
99
oauthlib
1010
requests-mock
11-
12-
# temporary install of Flask-Testing until Werkzeug >= 1.0.0 compatibility is fixed
13-
-e git+https://github.com/jnozsc/flask-testing.git@fix_travis_test#egg=Flask-Testing

0 commit comments

Comments
 (0)
Please sign in to comment.