I made an app and tested it locally and it works fine. I'm trying to see if I can deploy it with pythonanywhere but I keep running into this issue - log says:
2018-06-29 17:14:39,281: Error running WSGI application
2018-06-29 17:14:39,285: ImportError: cannot import name FlaskForm
2018-06-29 17:14:39,286: File "/var/www/gman_pythonanywhere_com_wsgi.py", line 81, in <module>
2018-06-29 17:14:39,286: from app_runner import app as application # noqa
2018-06-29 17:14:39,286:
2018-06-29 17:14:39,286: File "/home/Gman/deploy/app_runner.py", line 2, in <module>
2018-06-29 17:14:39,286: from app import app
2018-06-29 17:14:39,287: File "/home/Gman/deploy/app/__init__.py", line 15, in <module>
2018-06-29 17:14:39,287: from app import routes, models
2018-06-29 17:14:39,287: File "/home/Gman/deploy/app/routes.py", line 5, in <module>
2018-06-29 17:14:39,287: from app.forms import RegistrationForm, LoginForm, DoctorForm,
2018-06-29 17:14:39,287: File "/home/Gman/deploy/app/forms.py", line 1, in <module>
2018-06-29 17:14:39,287: from flask_wtf import FlaskForm
I'm not sure why this is happening. Any ideas?