Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

grays out site packages in tracebacks #33

Merged
merged 13 commits into from
Nov 1, 2017
2 changes: 1 addition & 1 deletion src/cs50/flask.py
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@

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

# Get default logger
import flask.logging