Skip to content

Commit

Permalink
Werkzeug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjoes committed Feb 7, 2020
1 parent 0589167 commit 844f1ea
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion flask_admin/tests/test_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@

from flask import Flask

from werkzeug.wsgi import DispatcherMiddleware
try:
from werkzeug.middleware.dispatcher import DispatcherMiddleware
except ImportError:
from werkzeug.wsgi import DispatcherMiddleware
from werkzeug.test import Client

from wtforms import fields
Expand Down

0 comments on commit 844f1ea

Please sign in to comment.