Skip to content

Commit fca9b2f

Browse files
committedOct 30, 2017
lowered flask requirement to 0.10
1 parent b7d3322 commit fca9b2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/cs50/flask.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
# Only patch 0.12 (in case logging changes in 0.13)
1010
version = StrictVersion(get_distribution("flask").version)
11-
assert version >= StrictVersion("0.11") and version < StrictVersion("0.13")
11+
assert version >= StrictVersion("0.10") and version < StrictVersion("0.13")
1212

1313
# Get default logger
1414
import flask.logging

0 commit comments

Comments
 (0)
Please sign in to comment.