mswhirl / autoflashgui

Utility to flash firmware to modems and run setup commands after the flash has completed
GNU General Public License v3.0
71 stars 17 forks source link

werkzeug import cached_property issue #43

Open brynnneilson opened 4 years ago

brynnneilson commented 4 years ago

I kept getting a failure with "werkzeug import cached_property". Had to update /usr/local/lib/python3.8/site-packages/robobrowser/browser.py to:

from werkzeug.utils import cached_property

xanni commented 4 years ago

If you don't want to modify the Python packages, you can just add this to autoflashgui.py instead:

import werkzeug
werkzeug.cached_property = werkzeug.utils.cached_property
gerrydoro commented 3 years ago

Use Werkzeug 0.16.1 pip install Werkzeug==0.16.1

I already informed the author with my pull request #44