Hello, I currently have 2 web app's running, one that is public and 1 that I do pseudo testing with. I have incorporated Flask-Mail using python3.4 on the testing app no problem. However when I add the code to the current public app I get an "ImportError: No module named 'flask_mail'"
What would cause this issue on 1 app and not the other?
What's weirder is that when I open a console in the app that has the issues and do "import flask_mail" or "from flask_mail import Mail" both seem to work.