2 Commits

Author SHA1 Message Date
Jeff Widman
4225f7f4ad Bump to 0.15.1 (#254)
Bump to `0.15.1` release so that we can get this minor bugfix live:
* #253
2024-04-27 11:03:27 -07:00
Joel Burton
a63f64051b Fix prob w/using w/o SQLAlchemy (#253) 2024-04-25 14:47:07 -07:00
2 changed files with 2 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
[metadata]
name = Flask-DebugToolbar
version = 0.15.0
version = 0.15.1
author = Michael van Tellingen
author_email = michaelvantellingen@gmail.com
maintainer = Matt Good

View File

@@ -3,6 +3,7 @@ try:
except ImportError:
sqlalchemy_available = False
get_recorded_queries = SQLAlchemy = None
debug_enables_record_queries = False
else:
try:
from flask_sqlalchemy.record_queries import get_recorded_queries