In views/home.py we from werkzeug import MultiDict. Prior to version 1.0.0 of Werkzeug this was fine as the project's __init__.py file gave us a pointer. Technically the MultiDict class is inside datastructures.py, so the proper import statement should be from werkzeug.datastructures import MultiDict; as of version 1.0.0 the ATK will not run because this import causes an error. Making this change should be backward-compatible.
For anyone encountering this problem, you can pip install werkzeug==0.14.1 and the ATK will run.
In views/home.py we
from werkzeug import MultiDict
. Prior to version 1.0.0 of Werkzeug this was fine as the project's__init__.py
file gave us a pointer. Technically the MultiDict class is inside datastructures.py, so the proper import statement should befrom werkzeug.datastructures import MultiDict
; as of version 1.0.0 the ATK will not run because this import causes an error. Making this change should be backward-compatible.For anyone encountering this problem, you can
pip install werkzeug==0.14.1
and the ATK will run.